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