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

@isatol/fetchmodule

v1.5.9

Published

A module for making HTTP requests based on fetch.

Downloads

7

Readme

FetchModule

A module for making HTTP requests based on fetch.

Installation

npm install @isatol/fetchmodule

Use

You need to import the request method to make requests.

Also included is support for creating an instance of a Base URL and headers to reuse them in all requests.

Import methods

import { createInstance, useWithHeaders, request } from "@isatol/fetchmodule";
  • With createInstance() you can pass as an argument a URI address that will be the basis for subsequent requests
createInstance("https://reqres.in/api/");
  • With useWithHeaders() you can pass as an argument the initial headers for all request
const headers = new Headers();
headers.append("Content-Type", "application/json");
useWithHeaders(headers);
  • With request() you can make HTTP request. If createInstance() is active, just complete the rest of the URI what do you want to access.
- With createInstance()
request("users", {
  method: "get",
});
- Without createInstance()
request("https://reqres.in/api/users", {
  method: "get",
});

The second argument what receive request() is called options, which is a series of options to complete the request.

request("users", {
  method: "" -> "get, post, put, delete, patch",
  data: JSON.stringify({}) -> use it when the method is different from "get",
  headers: {} -> If `useWithHeaders()` is active, this part is autocomplete,
  params: {} -> Use it when the method is "get",
  result: "" -> The value when te promise is resolved. "json, arrayBuffer, blob, text". Default is "json",
  retry: {
    retryOn: [Number], -> Status Code
    clearLocalStorage: "example", true, ["ex", "ex2"] -> remove an item, clear all the keys or remove items in local storage. 
    redirectToPageIfFails: "" -> If a retry fails, it automatically redirects to that page
  } -> Retry requests
})

Example

request("users", {
  method: "get",
  params: {
    page: 2,
  },
}).then((response) => {
  const data = response.data; <- represent the data returned by the server.
  const default = response.default; <- represent the Response object returned by fetch;
  const status = response.status <- represent the status code;
  this.total = response.data.total;
});

Retry requests

You can also retry a request once, if the server returned an unsuccessful status code

To do so, you need to add the retry object that includes the retryOnn and redirectToPageIfFails objects.

retryOn it is a numeric array, here put the status codes.

redirectToPageIfFails automatically redirects to a page if the retry fails. Can be omitted

Example

request("users", {
  method: "post",
  retry: {
    retryOn: [401, 403],
    clearLocalStorage: "token"
  },
  data: JSON.stringify(jsonPost)
})