root 3bf41bf355 update | 1 year ago | |
---|---|---|
.. | ||
index.d.ts | 1 year ago | |
index.js | 1 year ago | |
license | 1 year ago | |
package.json | 1 year ago | |
readme.md | 1 year ago |
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.