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

@technomoron/api-client-base

v1.0.31

Published

Client library for api-server-base

Readme

API Client Base

Client library for talking to api-server-base based APIs.

Features

  • Simplifies API interactions with GET, POST, PUT, and DELETE methods.
  • Manages authentication tokens seamlessly, including token refresh.

Installation

To use this package, install it via npm or yarn:

npm|pnpm|yarn install @technomoron/api-client-base

Usage

Import and Initialize

import ApiClient from '@technomoron/api-client-base';

const API_BASE_URL = 'https://api.example.com';
const client = new ApiClient(API_BASE_URL);
const clientWithKey = new ApiClient(API_BASE_URL, { apiKey: 'apikey' });

Public Methods

login(username: string, password: string, domain: string, fingerprint: string): Promise<{ accessToken: string; refreshToken: string; user: SafeUser }>

Authenticates the user and retrieves an access token, refresh token, and user payload.

await client.login('username', 'password', 'example.com', 'unique-fingerprint');

get<T>(command: string): Promise<T>

Performs a GET request to the specified API endpoint.

const data = await client.get('/api/v1/resource');

post<T>(command: string, body: any): Promise<T>

Performs a POST request to the specified API endpoint with a request body.

const response = await client.post('/api/v1/resource', { key: 'value' });

put<T>(command: string, body: any): Promise<T>

Performs a PUT request to the specified API endpoint with a request body.

await client.put('/api/v1/resource/1', { key: 'updatedValue' });

delete<T>(command: string, body?: any): Promise<T>

Performs a DELETE request to the specified API endpoint. Optionally, you can include a request body.

await client.delete('/api/v1/resource/1');

Authentication Management

The ApiClient class handles token-based authentication:

  • Automatically attaches the Authorization header with the Bearer token for authenticated requests.
  • Refreshes the access token when it expires using the stored refresh token.

Example

import apiClient from '@technomoron/api-client-base';

const API_BASE_URL = 'https://api.example.com';

(async () => {
    const client = new apiClient(API_BASE_URL);

    const login = await client.login('user', 'password', 'example.com', 'unique-fingerprint');
    if (!login.isSuccess()) {
        throw Error(`Unable to log in: ${login.message} (${login.code})`);
    }

    const categories = await client.get('/api/v1/categories');
    if (categories.isSuccess()) {
        console.log(JSON.stringify(categories.data, undefined, 2));
    }
})();

License

MIT - Copyright (c) 2025 Bjørn Erik Jacobsen