Bachir Soussi Chiadmi cefd1c2ad0 updated sys and created publi | 6 år sedan | |
---|---|---|
.. | ||
index.js | 7 år sedan | |
package.json | 6 år sedan | |
readme.md | 7 år sedan |
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