jack e1a2621c78 update | 2 лет назад | |
---|---|---|
.. | ||
index.js | 2 лет назад | |
package.json | 2 лет назад | |
readme.md | 2 лет назад |
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