request/request-promise-any

Name: request-promise-any

Owner: request

Description: The simplified HTTP request client 'request' with Promise support. Powered by 'any-promise'.

Created: 2016-05-06 20:56:27.0

Updated: 2018-04-02 17:06:39.0

Pushed: 2017-09-22 17:02:27.0

Homepage:

Size: 19

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

<img src="https://promises-aplus.github.io/promises-spec/assets/logo-small.png" align="right" alt="Promises/A+ logo" />

Request-Promise-Any

Gitter Build Status Coverage Status Dependency Status Known Vulnerabilities

This package is similar to request-promise but uses any-promise to let the user choose which Promise library to use.

Please refer to the request-promise documentation. Everything applies to request-promise-any except the following:

Installation

This module is installed via npm:

install --save request
install --save request-promise-any

request is defined as a peer-dependency and thus has to be installed separately.

Registering Your Preferred Promise Library

First, install your preferred Promise library. E.g. Q:

install --save q

Then, register the Promise library before you require request-promise-any for the first time:

ire('any-promise/register/q')

rp = require('request-promise-any')

For a list of supported Promise libraries and advanced registration features read the documentation of any-promise.

Migration from request-promise to request-promise-any
  1. Go through the migration instructions to upgrade to request-promise v4.
  2. Ensure that you don't use Bluebird-specific features on the promise returned by your request calls. In particular, you can't use .finally(...) anymore.
  3. Follow the registration instructions above.
  4. You are done.
Contributing

To set up your development environment:

  1. clone the repo to your desktop,
  2. in the shell cd to the main folder,
  3. hit npm install,
  4. hit npm install gulp -g if you haven't installed gulp globally yet, and
  5. run gulp dev. (Or run node ./node_modules/.bin/gulp dev if you don't want to install gulp globally.)

gulp dev watches all source files and if you save some changes it will lint the code and execute all tests. The test coverage report can be viewed from ./coverage/lcov-report/index.html.

If you want to debug a test you should use gulp test-without-coverage to run all tests without obscuring the code by the test coverage instrumentation.

Change History
License (ISC)

In case you never heard about the ISC license it is functionally equivalent to the MIT license.

See the LICENSE file for details.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.