1.0.0 • Published 11 years ago
streamf v1.0.0
streamf
Like sprintf but for streams.
Example
var streamf = require('streamf');
streamf('foo: %s, bar: %j', someRawStream, someJSONStream))
.pipe(process.stdout)Given someRawStream emits "bar" and someJSONStream emits {beep:"boop"},
the output will be:
foo: bar, bar: [{"beep":"boop"}]Installation
$ npm install streamfAPI
streamf(str, ..args)
Given printf style string str, render using args.
Supported placeholders:
%s: stringify%d: numberify%j: json-parse-ifyYou can pass streams and normal values as args.
License
MIT
1.0.0
11 years ago