Socket
Socket
Sign inDemoInstall

responselike

Package Overview
Dependencies
1
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    responselike

A response-like object for mocking a Node.js HTTP response stream


Version published
Weekly downloads
15M
decreased by-1.11%
Maintainers
1
Install size
8.85 kB
Created
Weekly downloads
 

Package description

What is responselike?

The `responselike` npm package is designed to create `Response` objects that mimic HTTP response objects. This can be particularly useful in testing scenarios where you want to simulate responses from web servers without making actual HTTP requests. It allows for the creation of response-like objects with properties and methods that resemble those of real HTTP responses.

What are responselike's main functionalities?

Creating a response-like object

This feature allows for the creation of a response-like object with a status code, headers, body, and URL. It's useful for simulating HTTP responses in tests.

const Response = require('responselike');
const response = new Response(200, {}, 'body', 'http://example.com');
console.log(response.statusCode); // 200

Accessing response properties

Once a response-like object is created, you can access its properties such as headers, body, and URL, similar to how you would with a real HTTP response.

console.log(response.headers); // {}
console.log(response.body); // 'body'
console.log(response.url); // 'http://example.com'

Other packages similar to responselike

Readme

Source

responselike

A response-like object for mocking a Node.js HTTP response stream

Build Status Coverage Status npm npm

Returns a streamable response object similar to a Node.js HTTP response stream. Useful for formatting cached responses so they can be consumed by code expecting a real response.

Install

npm install --save responselike

Or if you're just using for testing you'll want:

npm install --save-dev responselike

Usage

const Response = require('responselike');

const response = new Response(200, { foo: 'bar' }, Buffer.from('Hi!'), 'https://example.com');

response.statusCode;
// 200
response.headers;
// { foo: 'bar' }
response.body;
// <Buffer 48 69 21>
response.url;
// 'https://example.com'

response.pipe(process.stdout);
// Hi!

API

new Response(statusCode, headers, body, url)

Returns a streamable response object similar to a Node.js HTTP response stream.

statusCode

Type: number

HTTP response status code.

headers

Type: object

HTTP headers object. Keys will be automatically lowercased.

body

Type: buffer

A Buffer containing the response body. The Buffer contents will be streamable but is also exposed directly as response.body.

url

Type: string

Request URL string.

License

MIT © Luke Childs

Keywords

FAQs

Last updated on 17 Aug 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc