Socket
Socket
Sign inDemoInstall

@digitalbazaar/http-client

Package Overview
Dependencies
2
Maintainers
5
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @digitalbazaar/http-client

An opinionated, isomorphic HTTP client.


Version published
Weekly downloads
43K
decreased by-2.37%
Maintainers
5
Install size
1.21 MB
Created
Weekly downloads
 

Changelog

Source

4.1.1 - 2024-02-21

Fixed

  • Upgrade from undici@5 to undici@6.
    • Undici v6.6.1 addresses a number of CVEs:
      • https://github.com/nodejs/undici/releases/tag/v6.6.1
    • Requires Node.js 18+, but v4 of this packages already has that requirement.
      • https://github.com/nodejs/undici/releases/tag/v6.0.0

Readme

Source

http-client

An opinionated, isomorphic HTTP client for Node.js, browsers, and React Native.

Usage

Import httpClient (Node.js)
import https from 'https';
import {httpClient} from '@digitalbazaar/http-client';
Import httpClient (browsers or React Native)
import {httpClient} from '@digitalbazaar/http-client';
Import and initialize a custom Bearer Token client
import {httpClient} from '@digitalbazaar/http-client';

const httpsAgent = new https.Agent({rejectUnauthorized: false});

const accessToken = '12345';
const headers = {Authorization: `Bearer ${accessToken}`};

const client = httpClient.extend({headers, httpsAgent});

// subsequent http calls will include an 'Authorization: Bearer 12345' header,
// and use the provided httpsAgent
GET a JSON response in the browser
try {
  const response = await httpClient.get('http://httpbin.org/json');
  return response.data;
} catch(e) {
  // status is HTTP status code
  // data is JSON error from the server
  const {data, status} = e;
  throw e;
}
GET a JSON response in Node with an HTTP Agent
import https from 'https';
// use an agent to avoid self-signed certificate errors
const agent = new https.Agent({rejectUnauthorized: false});
try {
  const response = await httpClient.get('http://httpbin.org/json', {agent});
  return response.data;
} catch(e) {
  // status is HTTP status code
  // data is JSON error from the server if available
  const {data, status} = e;
  throw e;
}
GET HTML by overriding default headers
const headers = {Accept: 'text/html'};
try {
  const response = await httpClient.get('http://httpbin.org/html', {headers});
  // see: https://developer.mozilla.org/en-US/docs/Web/API/Response#methods
  return response.text();
} catch(e) {
  // status is HTTP status code
  // any message from the server can be parsed from the response if present
  const {response, status} = e;
  throw e;
}
POST a JSON payload
try {
  const response = await httpClient.post('http://httpbin.org/json', {
    // `json` is the payload or body of the POST request
    json: {some: 'data'}
  });
  return response.data;
} catch(e) {
  // status is HTTP status code
  // data is JSON error from the server
  const {data, status} = e;
  throw e;
}
POST a JSON payload in Node with an HTTP Agent
import https from 'https';
// use an agent to avoid self-signed certificate errors
const agent = new https.Agent({rejectUnauthorized: false});
try {
  const response = await httpClient.post('http://httpbin.org/json', {
    agent,
    // `json` is the payload or body of the POST request
    json: {some: 'data'}
  });
  return response.data;
} catch(e) {
  // status is HTTP status code
  // data is JSON error from the server
  const {data, status} = e;
  throw e;
}

Keywords

FAQs

Last updated on 21 Feb 2024

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