Eric Foster 35b96bc934 initial commit | 6 年之前 | |
---|---|---|
.. | ||
index.js | 6 年之前 | |
package.json | 6 年之前 | |
readme.md | 6 年之前 |
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