weekend project to make a simple web app using Typescript/Ionic/Angular.
Vincent Sima 1517fc9a2f done 6 年之前
..
index.js done 6 年之前
package.json done 6 年之前
readme.md done 6 年之前

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