Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fetch-dedupe

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fetch-dedupe

A thin wrapper around fetch that prevents duplicate requests.

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Fetch Dedupe

Travis build status npm version Test Coverage gzip size

A (very) thin wrapper around global.fetch() that prevents duplicate requests.

Motivation

A common feature of libraries or frameworks that build abstractions around HTTP requests is that they deduplicate requests that are exactly the same. This library extracts that functionality.

Installation

Install using npm:

npm install fetch-dedupe

or yarn:

yarn add fetch-dedupe

Getting Started

This example demonstrates using Fetch Dedupe with the ES2015 module syntax.

import { getRequestKey, fetchDedupe } from 'fetch-dedupe';

const url = '/test/2';
  method: 'PATCH',
  body: JSON.stringify({ a: 12 })
};

// The API of `fetchDedupe` is the same as fetch, except that it
// has an additional argument. Pass the `requestKey` in that
// third argument
fetchDedupe(url, fetchOptions, {responseType: 'json'}).then(res => {
  console.log('Got some data', res.data);
});

// Additional requests are deduped. Nifty.
fetchDedupe(url, fetchOptions, {responseType: 'json'}).then(res => {
  console.log('Got some data', res.data);
});
Important: Read this!

When using fetch, you typically read the body yourself by calling, say, .json() on the response. Fetch Dedupe reads the body for you, so you cannot do it, or else an error will be thrown.

// Normal usage of `fetch`:
fetch(url, init)
  .then(res => res.json())
  .then(data => console.log('got some cool data', data));

// The same code using `fetchDedupe`:
fetchDedupe(url, init, dedupeOptions)
  .then(res =>
    console.log('got some cool data', res.data)
  );

// Don't do this! It will throw an error.
fetchDedupe(url, init, dedupeOptions)
  .then(res => res.json())
  .then(data => console.log('got some cool data', data));

API

This library exports the following methods:

  • fetchDedupe()
  • getRequestKey()
  • isRequestInFlight()
  • clearRequestCache()
fetchDedupe( input [, init], dedupeOptions )

A wrapper around global.fetch(). The first two arguments are the same ones that you're used to. Refer to the fetch() documentation on MDN for more.

Note that init is optional, as with global.fetch().

The third option is dedupeOptions. This is an object with three attributes:

  • responseType: Any of the methods from the Body mixin. Typically, you will want to use json. Required.
  • requestKey: A string that is used to determine if two requests are identical. You may pass this to configure how the request key is generated. Optional.
  • dedupe: Whether or not to dedupe the request. Pass false and it will be as if this library was not even being used. Defaults to true.

Given the two possible value types of input, optional second argument, there are a way few ways that you can call fetchDedupe. Let's run through valid calls to fetchDedupe:

import { fetchDedupe } from 'fetch-dedupe';

// Omitting `init` and using a URL string as `input`
fetchDedupe('/test/2', {responseType: 'json'});

// Using a URL string as `input`, with numerous `init` configurations
// and specifying several `dedupeOptions`
fetchDedupe('/test/2', {
  method: 'PATCH',
  body: JSON.stringify({value: true}),
  credentials: 'include'
}, {
  responseType: 'json',
  requestKey: generateCustomKey(opts),
  dedupe: false
})

// Omitting `init` and using a Request as `input`
const req = new Request('/test/2');
fetchDedupe(req, {responseType: 'json'});

// Request as `input` with an `init` object. Note that the `init`
// object takes precedence over the Request values.
fetchDedupe(req, {method: 'PATCH'}, {responseType: 'json'});
getRequestKey({ url, method, responseType, body })

Returns a unique request key based on the passed-in values. All of the values, including body, must be strings.

Every value is optional, but the deduplication logic is improved by adding the most information that you can.

Note: The method option is case-insensitive.

Note: You do not need to use this method to generate a request key. You can generate the key in whatever way that you want. This should work for most use cases, though.

import { getRequestKey } from 'fetch-dedupe';

const keyOne = getRequestKey({
  url: '/books/2',
  method: 'get'
});

const keyTwo = getRequestKey({
  url: '/books/2',
  method: 'patch',
  body: JSON.stringify({
    title: 'My Name is Red'
  })
});

keyOne === keyTwo;
// => false
isRequestInFlight( requestKey )

Pass in a requestKey to see if there's already a request in flight for it. This can be used to determine if a call to fetchDedupe() will actually hit the network or not.

import { isRequestInFlight, getRequestKey } from 'fetch-dedupe';

const key = getRequestKey({
  url: '/books/2',
  method: 'get'
});

// Is there already a request in flight for this?
const readingBooksAlready = isRequestInFlight(key);

Now: We strongly recommend that you manually pass in requestKey to fetchDedupe if you intend to use this method. In other words, do not rely on being able to reliably reproduce the request key that is created when a requestKey is not passed in.

clearRequestCache()

Wipe the cache of in-flight requests.

Warning: this is not safe to use in application code. It is mostly useful for testing.

FAQ & Troubleshooting

An empty response is throwing an error, what gives?

Empty text strings are not valid JSON.

JSON.parse('');
// > Uncaught SyntaxError: Unexpected end of JSON input

Consequently, using json as the responseType when a response's body is empty will cause an Error to be thrown. To avoid this, we recommend using text instead.

APIs generally use empty bodies in conjunction with a 204 status code for responses of "write" requests (deletes, updates, and less commonly creates).

Why is responseType required?

The argument that is returned to you in the .then callback of a call to fetch() is a Response object. The body of a Response object can only be read a single time, because it is a ReadableStream.

For Fetch Dedupe to work, it must pass the result of a single request to many "consumers." The only way for this to work is if the library reads it for you, which requires that the library know what its content type is.

What request body types are supported?

Just strings for now, which should work for the majority of APIs. Support for other body types is in the works.

Implementors

These are projects that build abstractions around HTTP requests using Fetch Dedupe under the hood.

Are you using it on a project? Add it to this list by opening a Pull Request

Acknowledgements

Apollo inspired me to write this library.

Keywords

FAQs

Package last updated on 04 Feb 2018

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

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc