npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@popovmp/request-service

v5.3.0

Published

Make HEAD, GET, and POST requests with default headers and parse the response

Downloads

42

Readme

Make HEAD, GET, and POST requests with default headers and parse the response

request-service sends GET, POST, PUT, and HEAD request with some automations:

  • sets default Content-Type header depending on the data type
  • sets the Content-Length header
  • parses the received data depending on the incoming headers to JSON, Buffer, or a string.
  • provides the Request / Response properties in the callback

Homepage: https://github.com/popovmp/request-service#readme

Synopsis

Make a HEAD request

const request = require('@popovmp/request-service');

request.head('https://example.com', {}, (err, data, prop) => {
    console.log( prop.statusCode === 200
        ? 'The server is online!'
        : 'The server is down...' );
});

Make a GET request

const url     = 'https://example.com/get?foo=bar';
const headers = {'Username': 'John Doe'};

request.get(url, headers, callback);

Make a POST request

const url     = 'https://example.com/post?foo=bar';
const data    = {answer: 42}; // Can be anything
const headers = {'Username': 'John Doe'};

request.post(url, data, headers, callback);

POST form request with a Content-Type: x-www-form-urlencoded header

Note - form-urlencoded queries do not contain arrays. If your query object has an array, the corresponding field will be ignored in the request.

const url     = 'https://example.com/form';
const form    = {name: 'John Doe', email: '[email protected]'};
const headers = {};

request.form(url, form, headers, callback);

POST json request with a Content-Type: application/json header

const url     = 'https://example.com/api';
const object  = {answer: 42, numbers: [1, 2, 3, 4]};
const headers = {};

request.json(url, object, headers, callback);

The request-service accepts equal callback for both GET and POST requests.

function callback(err, data, prop) {
    if (err) {
        console.error('Error: ' + err);
    }

    console.log(data);

    console.log( JSON.stringify(prop, null, 2) );
}

Installation

npm install @popovmp/request-service

Usage

request-service is a "http"/"https" client. It sends requests and manages the responses. It also tries to set a proper 'Content-Type' headers for the request and to parse the response body.

Yuo can use it in two ways:

const request = require('@popovmp/request-service');

request.form(url, data, headers, callback);

or you can use convenient method aliases:

const { requestHead, requestGet, requestPost, requestForm, requestJson } = require('@popovmp/request-service');

Default Content-Type header

If, you do not provide a Content-Type header, request-service sets a default Content-Type header for the POST requests depending on the data type.

  • null => ''
  • Buffer => Content-Type: application/octet-stream
  • Object => Content-Type: application/json
  • String => Content-Type: text/plain
  • Any => Content-Type: text/plain

Callback data

request-service call the given callback when the request is ready.

// Request callback
function request_ready(err, data, prop) { }

In case of an error, the callback receives the error message and the Request properties.

When there is no error, it is called with null and data. The data can be Buffer, Object, string or null.

request-service parses the response data according to the response's content-type as follows:

  • Content-Type: application/octet-stream => data
  • Content-Type: application/json => JSON.parse( data.toString() )
  • Content-Type: application/x-www-form-urlencoded => queryString.parse( data.toString() )
  • other => data.toString()

The Request properties is an object with properties from the outgoing request and incoming response.

An example of Request properties:

{
  "aborted": false,
  "complete": true,
  "headers": {
    "date"          : "Sat, 29 Aug 2020 06:41:37 GMT",
    "content-type"  : "application/json",
    "content-length": "283",
    "connection"    : "close",
    "server"        : "gunicorn/19.9.0",
    "access-control-allow-origin"     : "*",
    "access-control-allow-credentials": "true"
  },
  "host"         : "httpbin.org",
  "httpVersion"  : "1.1",
  "method"       : "GET",
  "outputSize"   : 0,
  "path"         : "/get?foo=bar",
  "protocol"     : "https:",
  "statusCode"   : 200,
  "statusMessage": "OK"
}

Methods

request-service exports the following methods: head, get, post, form, and json.

/**
 * Sends a HEAD request.
 *
 * @param { string              } url
 * @param { OutgoingHttpHeaders } headers
 * @param { ResponseCallback    } callback
 */
function head(url, headers, callback) { }
/**
 * Sends a GET request.
 *
 * @param {string} url
 * @param {OutgoingHttpHeaders} headers
 * @param {ResponseCallback} callback
 */
function get(url, headers, callback) { }
/**
 * Sends a POST request.
 *
 * @param {string} url
 * @param {any} data
 * @param {OutgoingHttpHeaders} headers
 * @param {ResponseCallback} callback
 */
function post(url, data, headers, callback) { }
/**
 * Sends a PUT request.
 *
 * @param {string} url
 * @param {any} data
 * @param {OutgoingHttpHeaders} headers
 * @param {ResponseCallback} callback
 */
function put(url, data, headers, callback) { }
/**
 * Sends a POST request with 'Content-Type: application/x-www-form-urlencoded'.
 *
 * @param { string              } url
 * @param { object              } data - values can be object, string, numbers or arrays.
 * @param { OutgoingHttpHeaders } headers
 * @param { ResponseCallback    } callback
 */
function form(url, data, headers, callback) { }

/**
 * Sends a POST request with 'Content-Type: application/json'.
 *
 * @param { string              } url
 * @param { object              } data
 * @param { OutgoingHttpHeaders } headers
 * @param { ResponseCallback    } callback
 */
function json(url, data, headers, callback) { }

Where:

/**
 * @typedef { function } ResponseCallback
 *
 * @param { null | string } error
 * @param { Buffer | Object | string | null } data
 * @param { RequestProperties } prop
 */
function request_ready(err, data, prop) { }

License

request-service is free for use and modification. No responsibilities for damages of any kind.

Copyright (c) 2022 Miroslav Popov