Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

clark

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clark

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

  • 0.0.6
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
3.9K
increased by21.88%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

FAQs

Package last updated on 04 Apr 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc