JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 19864
  • Score
    100M100P100Q135237F
  • License MIT

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

Package Exports

  • req-then

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (req-then) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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

Param Type Default Description
url string target url
[options] object
[options.method] string "GET" GET, POST etc.
[options.data] string | object data to POST. Objects will be JSON stringified.
[options.headers] object header object
[options.rejectUnauthorized] boolean
[options.withCredentials] boolean

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