tree: 9c87abe2253f89a3777e7853747167ff460e21d2 [path history] [tgz]
  1. index.js
  2. package.json
  3. readme.md
src/cobalt/debug/remote/devtools/node_modules/get-stdin/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