You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
Sindre Sorhus a4d3c944a7 fix test plan 10 years ago
.editorconfig various tweaks 10 years ago
.gitattributes init 11 years ago
.gitignore init 11 years ago
.jshintrc various tweaks 10 years ago
.travis.yml init 11 years ago
index.js Always return data as `Buffer` 10 years ago
license various tweaks 10 years ago
package.json 2.0.0 10 years ago
readme.md Always return data as `Buffer` 10 years ago
test.js fix test plan 10 years ago

readme.md

get-stdin Build Status

Easier stdin

Install

$ npm install --save get-stdin

Usage

// example.js
var stdin = require('get-stdin');

stdin(function (data) {
	console.log(data.toString());
	//=> unicorns
});
$ echo unicorns | node example.js
unicorns

License

MIT © Sindre Sorhus