This is a sequel to stream-combiner for streams3.
var combine = require('stream-combiner2')
Turn a pipeline into a single stream. Combine
returns a stream that writes to the first stream
and reads from the last stream.
Streams1 streams are automatically upgraded to be streams3 streams.
Listening for 'error' will recieve errors from all streams inside the pipe.
var Combine = require('stream-combiner')
var es = require('event-stream')
Combine( // connect streams together with `pipe`
process.openStdin(), // open stdin
es.split(), // split stream to break on newlines
es.map(function (data, callback) { // turn this async function into a stream
var repr = inspect(JSON.parse(data)) // render it nicely
callback(null, repr)
}),
process.stdout // pipe it to stdout !
)
MIT
# stream-combiner2 This is a sequel to [stream-combiner](https://npmjs.org/package/stream-combiner) for streams3. ``` js var combine = require('stream-combiner2') ``` ## Combine (stream1,...,streamN) Turn a pipeline into a single stream. `Combine` returns a stream that writes to the first stream and reads from the last stream. Streams1 streams are automatically upgraded to be streams3 streams. Listening for 'error' will recieve errors from all streams inside the pipe. ```js var Combine = require('stream-combiner') var es = require('event-stream') Combine( // connect streams together with `pipe` process.openStdin(), // open stdin es.split(), // split stream to break on newlines es.map(function (data, callback) { // turn this async function into a stream var repr = inspect(JSON.parse(data)) // render it nicely callback(null, repr) }), process.stdout // pipe it to stdout ! ) ``` ## License MIT
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 19553 | swellard | Move and rename clients | ||
//guest/perforce_software/helix-web-services/main/source/clients/2016.1.0/javascript/node_modules/stream-combiner2/README.md | |||||
#1 | 18810 | tjuricek |
First-pass at JavaScript client SDK. JavaScript requires Node with Gulp to "browserfy" the library. It's the easiest way I found to use the swagger-js project; bundle up a wrapping method. There is no JavaScript reference guide. The swagger-js doesn't really document what they do very well, actually. Overall I'm not particularly impressed by swagger-js, it was hard to even figure out what the right method syntax was. We may want to invest time in doing it better. This required setting CORS response headers, which are currently defaulted to a fairly insecure setting. |