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: 6 days ago
JSON representation
Clipboard access for CLI programs
- Host: GitHub
- URL: https://github.com/tj/node-cliparoo
- Owner: tj
- Created: 2013-08-28T21:29:49.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-11-15T20:51:34.000Z (almost 9 years ago)
- Last Synced: 2024-04-14T06:51:30.118Z (7 months ago)
- Language: JavaScript
- Size: 149 KB
- Stars: 63
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
- Changelog: History.md
Awesome Lists containing this project
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!');
});
```