ccc-tnt-psd2ui/npm-packages/win32-v2.4.x/mimic-response
2023-07-24 10:36:46 +08:00
..
index.d.ts 脚本打包 2023-07-24 10:36:46 +08:00
index.js 脚本打包 2023-07-24 10:36:46 +08:00
license 脚本打包 2023-07-24 10:36:46 +08:00
package.json 脚本打包 2023-07-24 10:36:46 +08:00
readme.md 脚本打包 2023-07-24 10:36:46 +08:00

mimic-response Build Status

Mimic a Node.js HTTP response stream

Install

$ npm install mimic-response

Usage

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

API

mimicResponse(from, to)

from

Type: Stream

Node.js HTTP response stream.

to

Type: Stream

Any stream.


Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.