Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/tj/node-cliparoo

Clipboard access for CLI programs
https://github.com/tj/node-cliparoo

Last synced: 2 months ago
JSON representation

Clipboard access for CLI programs

Lists

README

        

# Cliparoo

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

## Installation

```
$ npm install cliparoo
```

## Example

```js
var clip = require('cliparoo');

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