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 c748fd2aae Update readme.md 11 years ago
.editorconfig init 11 years ago
.gitattributes init 11 years ago
.gitignore init 11 years ago
.jshintrc init 11 years ago
.travis.yml init 11 years ago
index.js init 11 years ago
package.json 0.1.0 11 years ago
readme.md Update readme.md 11 years ago
test.js init 11 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);
	//=> unicorns
});
$ echo unicorns | node example.js
unicorns

License

MIT © Sindre Sorhus