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

possum-client

v1.0.3

Published

Lightweight http client with reconciliation

Readme

Possum

Table of content

Introduction

Possum is a TypeScript library designed to enhance the reliability of HTTP requests in web applications. It automatically retries failed HTTP requests by leveraging local storage and web workers. This ensures that even if a user goes offline or encounters an error, their requests are stored and retried upon re-establishing a connection or reloading the page.

Features

  • Automatic Retry: Failed requests are retried automatically.
  • Local Storage: Requests are stored locally in case of failure.
  • Web Workers: Requests are retried in a separate thread to maintain UI responsiveness.
  • Configurable: Easy to configure for different use cases.

Installation

npm install possum-client

Or using yarn:

yarn add possum-client

Usage

First, import and initialize Possum in your application.

import {PossumClient} from "possum-client";

Making Requests

Use performPossumRequest to handle your HTTP requests:

import {PossumClient} from "possum-client";

const {performPossumRequest} = PossumClient();


const requestData = {
    url: 'https://example.com/data',
    method: 'GET'
};

performPossumRequest(requestData)
    .then(response => console.log(response))
    .catch(error => console.error(error));

Customization

PossumRequest

interface PossumeRequest {
    url: string;
    method: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
    data?: any,
    headers: any;
}

PossumClientOptions

interface PossumClientOptions {
    /**
     * Options to define the storage possum would use to store failed requests.
     */
    store?: PossumStoreConfigOptions;
    /**
     * If true possum would attach an event listener to process stored failed requests on `DOMContentLoaded`.
     * This option only works while on the browser
     */
    retryOnPageLoad?: boolean;
}

Configuring Storage

import {PossumClient} from "possum-client";
import {createClient} from 'redis';


const redisClient = await createClient()
    .on('error', err => console.log('Redis Client Error', err))
    .connect();

// configuring possum to use redis to store failed requests
const {performPossumRequest} = PossumClient({
    store: {
        get: async (id) => {
            const data = await redisClient.get(id);
            return data ? JSON.parse(data) : null;
        },
        set: async (id, data) => {
            await redisClient.set(id, JSON.stringify(data))
        }
    }
});

const requestData = {
    url: 'https://example.com/data',
    method: 'GET'
};

performPossumRequest(requestData)
    .then(response => console.log(response))
    .catch(error => console.error(error));

API Reference

  • performPossumRequest(request: Request): Promise<any>
  • processFailedRequestsOnLoad(): void
  • PossumClient(options?: PossumClientOptions): { performPossumRequest, processFailedRequestsOnLoad }

Contributing

Contributions are always welcome! If you have new features to introduce or bugs to squash, kindly submit a Pull Request (PR) to make your mark. Your participation is highly appreciated.

License

This project is licensed under the MIT License - see the LICENSE file for details.