Socket
Socket
Sign inDemoInstall

req-then

Package Overview
Dependencies
5
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

req-then

Simple http(s) request function, returning a promise.


Version published
Weekly downloads
3.5K
increased by28.06%
Maintainers
1
Install size
85.7 kB
Created
Weekly downloads
 

Readme

Source

view on npm npm module downloads Dependency Status js-standard-style

req-then

Wraps node's built-in http(s) request function with a few extras:

  • Returns a promise, resolving to an object containing the data, node response and original request.
  • If data was supplied, sets a content-length header if not already present.
  • Automatically selects http or https transport depending on the input URL.
  • Cancellable (which fetch is not).

Example

const request = require('req-then')

request('http://www.bbc.co.uk')
	.then(response => {
		console.log('Response received', response.data)
		console.log('The nodejs response instance', response.res)
	})
	.catch(console.error)

request(reqOptions, [data]) ⇒ external:Promise

Returns a promise for the response.

Kind: Exported function
Resolve: object - res will be the node response object, data will be the data, req the original request.
Reject: Error - If aborted, the name property of the error will be aborted.

ParamTypeDescription
reqOptionsstring | objectTarget url string or a standard node.js http request options object.
[reqOptions.controller]objectIf supplied, an .abort() method will be created on it which, if invoked, will cancel the request. Cancelling will cause the returned promise to reject with an 'aborted' error.
[data]*Data to send with the request.

© 2015-16 Lloyd Brookes <75pound@gmail.com>. Documented by jsdoc-to-markdown.

Keywords

FAQs

Last updated on 23 Aug 2016

Did you know?

Socket

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc