stdout

pipe objects to console.log

3 个版本
安装
npm install stdout
yarn add stdout
pnpm add stdout
bun add stdout
README

stdout

When working with object streams, do you ever wish you could just pipe to console.log?

Now you can.

var request = require('request')
var JSONStream = require('JSONStream')
var stdout = require('stdout')

request('http://isaacs.couchone.com/registry/_all_docs')
  .pipe(JSONStream.parse('rows.*'))
  .pipe(stdout())

stdout([outputStream, prefix])

outputStream is optional. Defaults to process.stdout, but you can provide another stream like process.stderr if you want.

prefix is an optional string argument. If provided it will prepend each message with the prefix.

e.g. stdout('foo: ')('bar') would write out foo: bar

In the browser, it will automatically use console.log

Returns a writable stream that accepts Buffers, strings, or objects.

  • When given a Buffer, it outputs it directly.
  • When given a string, it just outputs it with a newline, just like console.log.
  • When given an object, it uses util.inspect and a newline, just like console.log.

License

MIT

版本列表
0.0.3 2014-02-04
0.0.2 2013-12-22
0.0.1 2013-07-23