Clark

ASCII sparklines in coffeescript. Based on 'spark' for shell.

Source files:

  1. clark.js

Clark

Current version: 0.0.6

A coffeescript, npm-ready version of the spark shell script. See spark documentation for details how to use.

Check out the:

Clark

Installation

Command-line: * Install node * npm install clark -g * clark 1 2 3 or clark 1,2,3

Clark ships with exports for CommonJS, AMD, and browser globals.

Usage

Command-line Usage

clark 1 2 3 4 5

output: ▁▂▄▆█

echo 1 2 3 4 5 | xargs clark

output: ▁▂▄▆█

clark 1,2,3,4,5

output: ▁▂▄▆█

Node Usage

var clark = require('clark');
console.log(clark([1,2,3]));

Browser Usage



Check out the spark page for some neat things to do.

Also available as a hubot script.

Changelog

v0.0.6 breaking: change export to return a function instead of and object