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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@exisjs/fetch

v0.5.0

Published

End-to-End Type-Safe Client for ExisJS

Readme


Description

@exisjs/fetch is the official HTTP client for Exis JS. Built entirely on the native fetch API, it is a zero-dependency, extremely lightweight client that acts as a 100% drop-in replacement for axios, with the added benefit of a highly-typed RPC Proxy for your Exis backend!

  • 0 dependencies. Supply-chain safe.
  • 100% axios-compatible API. Interceptors, error handling, config.
  • Built-in Retries. Exponential back-off out of the box.
  • Response Caching. In-memory caching for GET and HEAD requests.
  • Request De-duplication. Prevent duplicate in-flight network requests.
  • TypeScript First. Full generics and built-in typings.
  • RPC Proxy. Seamlessly consume your Exis AppRouter with full end-to-end type safety!

1. Typed RPC Client

If you are using Exis JS on your backend, you can create a fully-typed RPC client that mirrors your backend routing perfectly.

import { createClient } from "@exisjs/fetch";
import type { AppRouter } from "../backend/.exis/types";

const api = createClient<AppRouter>({
  baseUrl: "http://localhost:3000",
  headers: () => {
    return {
      Authorization: `Bearer ${localStorage.getItem("token")}`
    };
  }
});

// Fully typed! Autocomplete will show all available routes and their inputs.
const user = await api.users.get({ id: 123 });

HTML Error Overlays

In development mode, if the Exis server throws a 500 error and returns a text/html stack trace, @exisjs/fetch will automatically intercept it and display a beautiful full-screen iframe overlay, allowing you to instantly debug without opening the network tab.


2. Standard HTTP Client

You can use the default instance just like axios or native fetch.

import http from "@exisjs/fetch";

// GET
const { data } = await http.get("https://api.example.com/users");

// POST
const { data } = await http.post("https://api.example.com/users", {
  name: "Alice",
});

You can also create isolated instances:

import { fetch as http } from "@exisjs/fetch";

const api = http.create({
  baseURL: "https://api.example.com/v1",
  timeout: 10_000,
});

3. Retries (Built-in)

Automatic retry with exponential back-off is built directly into @exisjs/fetch.

const api = http.create({
  retries: 3, // up to 3 extra attempts
  retryDelay: 500, // base delay in ms (doubles each attempt)
  retryOn: [408, 429, 500, 502, 503, 504], // which statuses retry
});

4. Response Caching

You can optionally cache GET and HEAD responses in-memory.

// Cache this GET for the default 60s
await http.get("/config", { cache: true });

// Custom TTL
await http.get("/config", { cache: { ttl: 5 * 60_000 } });

// Inspect / clear
http.cache.size;
http.cache.clear();

5. Request De-duplication

Prevent multiple identical network requests from firing simultaneously.

// If five components call this at once, only one network request fires!
await Promise.all([
  http.get("/me", { dedupe: true }),
  http.get("/me", { dedupe: true }),
  http.get("/me", { dedupe: true }),
]);

6. Interceptors

Interceptors are identical to the standard axios API.

// Request Interceptor
http.interceptors.request.use((config) => {
  config.headers["Authorization"] = "Bearer token";
  return config;
});

// Response Interceptor
http.interceptors.response.use(
  (response) => response,
  (error) => {
    if (error.response?.status === 401) {
      // Handle unauthorized
    }
    return Promise.reject(error);
  }
);

7. Mock Adapter for Tests

Easily mock out endpoints in your test environment without spinning up a server.

import { createMockAdapter } from "@exisjs/fetch";

const api = http.create({
  adapter: createMockAdapter([
    {
      method: "GET",
      url: "/users/1",
      response: () => ({ id: 1, name: "Alice" }),
    },
  ]),
});

const { data } = await api.get("/users/1"); // { id: 1, name: 'Alice' }, no network call!

8. Cancellation

Cancel requests using standard AbortController (or legacy CancelToken).

const controller = new AbortController();

setTimeout(() => controller.abort(), 3000);

try {
  await http.get("/slow-endpoint", { signal: controller.signal });
} catch (err) {
  if (http.isCancel(err)) {
    console.log("Request cancelled!");
  }
}

9. Request Aliases

@exisjs/fetch provides a set of aliases for making HTTP requests. These aliases are shortcuts for making requests using the core request method, designed to be consistent with the HTTP methods defined in RFC 7231 and RFC 5789.

import http from "@exisjs/fetch";

// The core request method
http.request<T, R, D>(config: FetchRequestConfig<D>);

// Standard HTTP method aliases
http.get<T, R, D>(url: string, config?: FetchRequestConfig<D>);
http.delete<T, R, D>(url: string, config?: FetchRequestConfig<D>);
http.head<T, R, D>(url: string, config?: FetchRequestConfig<D>);
http.options<T, R, D>(url: string, config?: FetchRequestConfig<D>);
http.post<T, R, D>(url: string, data?: D, config?: FetchRequestConfig<D>);
http.put<T, R, D>(url: string, data?: D, config?: FetchRequestConfig<D>);
http.patch<T, R, D>(url: string, data?: D, config?: FetchRequestConfig<D>);

// The new HTTP QUERY method (RFC 10008)
// Safe and idempotent, but allows carrying a complex request body.
http.query<T, R, D>(url: string, data?: D, config?: FetchRequestConfig<D>);

URL Builder

The getUri method returns the URL that would be sent for a given config without actually making the request. It applies baseURL, paramsSerializer, and params.

const url = http.getUri({ 
  url: "/users", 
  baseURL: "https://api.example.com", 
  params: { active: true, role: "admin" }
}); 
// "https://api.example.com/users?active=true&role=admin"

Form data shorthand methods

These methods are equivalent to their counterparts above, but preset Content-Type to multipart/form-data. They are the recommended way to upload files or submit HTML forms.

http.postForm<T, R, D>(url: string, data?: D, config?: FetchRequestConfig<D>);
http.putForm<T, R, D>(url: string, data?: D, config?: FetchRequestConfig<D>);
http.patchForm<T, R, D>(url: string, data?: D, config?: FetchRequestConfig<D>);

Documentation

For full documentation and guides on building with Exis JS, please visit the main Exis JS Repository.