Socket
Socket
Sign inDemoInstall

req-then

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

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
2K
decreased by-28.02%
Maintainers
1
Weekly downloads
 
Created
Source

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

req-then

Simple http(s) request function, returning a promise. Built on node's http and https modules, so works in both node and browser (via browserify).

Uses ES6 Promises, if defined. If not, use a 3rd party promise library.

Example

var 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(url, [options]) ⇒ Promise

Returns a promise for the response.

Kind: Exported function
Resolve: object - res will be the node response object, data will be the data
Reject: Error

ParamTypeDefaultDescription
urlstringtarget url
[options]object
[options.method]string"GET"GET, POST etc.
[options.data]string | objectdata to POST. Objects will be JSON stringified.
[options.headers]objectheader object
[options.rejectUnauthorized]boolean
[options.withCredentials]boolean

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

Keywords

FAQs

Package last updated on 14 Jul 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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc