npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

cliparoo

1.1.1

@tjholowaychuk

npmSnykSocket
Downloads:1899
$ npm install cliparoo
DailyWeeklyMonthlyYearly

Cliparoo

Sorry for the stupid name. Copies strings to the clipboard, for CLIs.

Installation

$ npm install cliparoo

Example

var clip = require('cliparoo');

clip('Hello "World"', function(err){
  if (err) throw err;
  console.log('copied!');
});