christian 4571a14169 android fix | 3 lat temu | |
---|---|---|
.. | ||
index.js | 3 lat temu | |
license | 3 lat temu | |
package.json | 3 lat temu | |
readme.md | 3 lat temu |
Mimic a Node.js HTTP response stream
$ npm install mimic-response
const stream = require('stream');
const mimicResponse = require('mimic-response');
const responseStream = getHttpResponseStream();
const myStream = new stream.PassThrough();
mimicResponse(responseStream, myStream);
console.log(myStream.statusCode);
//=> 200
Type: Stream
Type: Stream
Any stream.
MIT © Sindre Sorhus