|
|
||||
|---|---|---|---|---|
| .. | ||||
| index.js | 11e3a9652a | 7 lat temu | ||
| package.json | 11e3a9652a | 7 lat temu | ||
| readme.md | 11e3a9652a | 7 lat temu | ||
Easier stdin
$ npm install --save get-stdin
// example.js
var stdin = require('get-stdin');
stdin(function (data) {
console.log(data);
//=> unicorns
});
$ echo unicorns | node example.js
unicorns
Get stdin as a string.
Get stdin as a buffer.
MIT © Sindre Sorhus