Socket
Socket
Sign inDemoInstall

browser-fetch-json

Package Overview
Dependencies
0
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    browser-fetch-json

A thin wrapper around Fetch API just for JSON in the browser


Version published
Weekly downloads
2
Maintainers
1
Install size
11.8 kB
Created
Weekly downloads
 

Readme

Source

browser-fetch-json

<img src=https://centerkey.com/graphics/center-key-logo.svg align=right width=200 alt=logo>

A thin wrapper around node-fetch just for JSON

License: MIT   npm   Known Vulnerabilities   Build Status

Why would you fetch anything but json? ;)

A) Setup

Install with the command:

$ npm install browser-fetch-json

Then import with the line:

const fetchJson = require('browser-fetch-json');

B) Examples

HTTP GET

Fetch the NASA Astronomy Picture of the Day:

// NASA APOD
const fetchJson = require('browser-fetch-json');
const url =       'https://api.nasa.gov/planetary/apod';
const params =    { api_key: 'DEMO_KEY' };
function handleData(data) {
   console.log('The NASA APOD for today is at: ' + data.url);
   }
fetchJson.get(url, params).then(handleData);
HTTP POST

Create a resource for the planet Jupiter:

// Create Jupiter
const fetchJson = require('browser-fetch-json');
const resource =  { name: 'Jupiter', position: 5 };
function handleData(data) {
   console.log(data);  //HTTP response body as an object literal
   }
fetchJson.post('https://httpbin.org/post', resource)
   .then(handleData)
   .catch(console.error);

C) Leverages node-fetch

browser-fetch-json depends on and calls node-fetch.

For comparison, the above POST example to create a planet would be done directly using node-fetch with the code:

// Create Jupiter (with node-fetch instead of browser-fetch-json)
const fetch =    require('node-fetch');
const resource = { name: 'Jupiter', position: 5 };
const options = {
   method: 'POST',
   headers: {
      'Content-Type': 'application/json',
      'Accept': 'application/json'
      },
   body: JSON.stringify(resource)
   };
function handleData(data) {
   console.log(data);  //HTTP response body as an object literal
   }
fetch('https://httpbin.org/post', options)
   .then(response => response.json())
   .then(handleData)
   .catch(console.error);

The examples for browser-fetch-json and node-fetch each produce the same output.

D) Details

The browser-fetch-json module automatically:

  1. Serializes the body payload with JSON.stringify().
  2. Adds the JSON data type ('application/json') to the HTTP headers.
  3. Builds the URL query string from the params object for GET requests.
  4. Runs .json() on the response from the promise.

E) API

The format for using browser-fetch-json is:

GET
fetchJson.get(url, params, options).then(callback);
POST
fetchJson.post(url, resource, options).then(callback);
PUT
fetchJson.put(url, resource, options).then(callback);
PATCH
fetchJson.patch(url, resource, options).then(callback);
DELETE
fetchJson.delete(url, resource, options).then(callback);

Notes:

  1. Only the url parameter is required.  The other parameters are optional.
  2. The params object for fetchJson.get() is converted into a query string and appended to the url.
  3. The resource object is turned into the body of the HTTP request.
  4. The options parameter is passed through to node-fetch (see the node-fetch documentation for supported options).
Dynamic HTTP method

If you need to programmatically set the method, use the format:

fetchJson.request(method, url, data, options).then(callback);

Where method is 'GET', 'POST', 'PUT', 'PATCH', or 'DELETE', and data represents either params or resource.

F) Questions or enhancements

Feel free to submit an issue.


MIT License

Keywords

FAQs

Last updated on 27 Aug 2018

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