Repository URL to install this package:
Version:
1.60.0 ▾
|
.. |
index.js |
license |
package.json |
readme.md |
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.