Socket
Socket
Sign inDemoInstall

request-options

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    request-options

Default options object generator for the popular NodeJS package Request


Version published
Weekly downloads
25
decreased by-3.85%
Maintainers
1
Install size
37.4 kB
Created
Weekly downloads
 

Readme

Source

request-options

Build Status

Default options object generator written in ES6 for the popular NodeJS package Request, providing a generic set of request options for the request package that can be augmented or overwritten by providing options.

Install

$ npm install -S request-options

Usage

requestOptions( [options] )

@param {Object} [options]
@returns {Object}

options

Any valid request options object

defaults

These defaults are intended for communication with APIs/services that accept and return JSON:

  • json: true
  • gzip: true
  • timeout: 10000

The defaults can be overwritten by providing your own properties in options with the new values. Any additional values will be ignored, use the options object for your extended options.

Examples

The basic use case will return true for json and gzip, as well as a timeout of 10 seconds

const requestOptions = require('request-options');
const request = require('request');

function responseHandler (err, res, body) {
  // handle request response
}

request(requestOptions(), responseHandler);

// requestOptions => {
  json: true,
  gzip: true,
  timeout: 10000
}

Adding additional options

const requestOptions = require('request-options');
const request = require('request');

const options = {
  method: 'get',
  url: 'https://api.yoursite.com/endpoint'
};

function responseHandler (err, res, body) {
  // handle request response
}

request(requestOptions(options), responseHandler);

// requestOptions => {
  method: 'get',
  url: 'https://api.yoursite.com/endpoint',
  json: true,
  gzip: true,
  timeout: 10000
}

Overwriting the defaults

const requestOptions = require('request-options');
const request = require('request');

const options = {
  method: 'get',
  url: 'https://api.yoursite.com/endpoint'
  gzip: false,
  timeout: 20000
};

function responseHandler (err, res, body) {
  // handle request response
}

request(requestOptions(options), responseHandler);

// requestOptions => {
  method: 'get',
  url: 'https://api.yoursite.com/endpoint',
  json: true,
  gzip: false,
  timeout: 20000
}

Notice how the default property json is still present and the value left unchanged

Tests

The test suite is located in the test/ directory. All new features are expected to have corresponding test cases. Ensure that the complete test suite passes by executing:

$ npm test

License

MIT License

Copyright (c) 2017 Nigel Horton

Keywords

FAQs

Last updated on 17 Jan 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