You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

then-request

Package Overview
Dependencies
6
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

then-request

A request library that returns promises, inspired by request


Version published
Weekly downloads
750K
decreased by-16.68%
Maintainers
1
Created
Weekly downloads
 

Package description

What is then-request?

The then-request npm package is a simplified HTTP client for Node.js that uses promises. It allows you to make HTTP requests and handle responses in a straightforward manner using promises, making it easier to work with asynchronous code.

What are then-request's main functionalities?

Basic GET Request

This feature allows you to make a basic GET request to a specified URL. The response is handled using a promise, and the response body is logged to the console.

const request = require('then-request');

request('GET', 'https://jsonplaceholder.typicode.com/posts/1')
  .done(function (res) {
    console.log(res.getBody());
  });

POST Request with JSON Body

This feature allows you to make a POST request with a JSON body. The request sends data to the specified URL, and the response is handled using a promise.

const request = require('then-request');

request('POST', 'https://jsonplaceholder.typicode.com/posts', {
  json: {
    title: 'foo',
    body: 'bar',
    userId: 1
  }
}).done(function (res) {
  console.log(res.getBody());
});

Handling Response Headers

This feature allows you to access and log the response headers from an HTTP request. The headers are available in the response object.

const request = require('then-request');

request('GET', 'https://jsonplaceholder.typicode.com/posts/1')
  .done(function (res) {
    console.log(res.headers);
  });

Handling Errors

This feature demonstrates how to handle errors in HTTP requests. If the request fails, the error is caught and logged to the console.

const request = require('then-request');

request('GET', 'https://jsonplaceholder.typicode.com/invalid-url')
  .done(function (res) {
    console.log(res.getBody());
  }, function (err) {
    console.error('Request failed:', err);
  });

Other packages similar to then-request

Readme

Source

then-request

A request library that returns promises, inspired by request

Build Status Dependency Status NPM version

Installation

npm install then-request

Usage

request(method, url, options, callback?)

e.g.

var request = require('then-request');

request('GET', 'http://example.com').done(function (res) {
  console.log(res.getBody());
});

Method:

An HTTP method (e.g. GET, POST, PUT, DELETE or HEAD). It is not case sensitive.

URL:

A url as a string (e.g. http://example.com). Relative URLs are allowed in the browser.

Options:

  • qs - an object containing querystring values to be appended to the uri
  • headers - http headers (default: {})
  • body - body for PATCH, POST and PUT requests. Must be a Buffer or String (only strings are accepted client side)
  • json - sets body but to JSON representation of value and adds Content-type: application/json. Does not have any affect on how the response is treated.
  • cache - only used in node.js (browsers already have their own caches) Can be 'memory', 'file' or your own custom implementaton (see https://github.com/ForbesLindesay/http-basic#implementing-a-cache).
  • followRedirects - defaults to true but can be explicitly set to false on node.js to prevent then-request following redirects automatically.
  • maxRedirects - sets the maximum number of redirects to follow before erroring on node.js (default: Infinity)
  • gzip - defaults to true but can be explicitly set to false on node.js to prevent then-request automatically supporting the gzip encoding on responses.
  • timeout (default: false) - times out if no response is returned within the given number of milliseconds.
  • socketTimeout (default: false) - calls req.setTimeout internally which causes the request to timeout if no new data is seen for the given number of milliseconds. This option is ignored in the browser.
  • retry (default: false) - retry GET requests. Set this to true to retry when the request errors or returns a status code greater than or equal to 400 (can also be a function that takes (err, req, attemptNo) => shouldRetry)
  • retryDelay (default: 200) - the delay between retries (can also be set to a function that takes (err, res, attemptNo) => delay)
  • maxRetries (default: 5) - the number of times to retry before giving up.

Callback / Returns:

If a callback is provided it is called with err and res. If no callback is provided, a Promise is returned that eventually resolves to res. The resulting Promise also has an additional .getBody(encoding?) method that is equivallent to calling .then(function (res) { return res.getBody(encoding?); }).

Response

Note that even for status codes that represent an error, the promise will be resolved as the request succeeded. You can call getBody if you want to error on invalid status codes. The response has the following properties:

  • statusCode - a number representing the HTTP status code
  • headers - http response headers
  • body - a string if in the browser or a buffer if on the server
  • url - the URL that was requested (in the case of redirects on the server, this is the final url that was requested)

It also has a method getBody(encoding?) which looks like:

function getBody(encoding) {
  if (this.statusCode >= 300) {
    var err = new Error('Server responded with status code ' + this.statusCode + ':\n' + this.body.toString(encoding));
    err.statusCode = this.statusCode;
    err.headers = this.headers;
    err.body = this.body;
    throw err;
  }
  return encoding ? this.body.toString(encoding) : this.body;
}

License

MIT

FAQs

Package last updated on 02 Mar 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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc