0.0.6 • Published 11 years ago

clark v0.0.6

Weekly downloads
173
License
-
Repository
-
Last release
11 years ago

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

<script src="src/clark.js"></script>
<script>
  console.log(clark([1,2,3]));
</script>

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