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 65c7449752 4.0.1 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 make sure the TTY callback is also async 10 years ago
license various tweaks 10 years ago
package.json 4.0.1 10 years ago
readme.md return string by default and add extra method for returning buffer 10 years ago
test-buffer.js use Streams2 pull streams 10 years ago
test-real.js use Streams2 pull streams 10 years ago
test.js use Streams2 pull streams 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);
	//=> unicorns
});
$ echo unicorns | node example.js
unicorns

API

stdin(callback)

Get stdin as a string.

stdin.buffer(callback)

Get stdin as a buffer.

License

MIT © Sindre Sorhus