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

@anmho/auth-client

v0.1.1

Published

Client credentials token refresher for anmho service OAuth clients.

Downloads

330

Readme

@anmho/auth-client

TypeScript client-credentials token refresher for long-running Node services.

The package reads OAuth client credentials from Vault using the node-vault SDK, exchanges them for a Bearer access token, keeps that token cached in the background, and exposes getToken().

Install

npm install @anmho/auth-client

Usage

import { ClientCredentialsTokenRefresher, vaultCredentialsProvider } from "@anmho/auth-client";

const refresher = new ClientCredentialsTokenRefresher({
  tokenUrl: "https://auth.anmho.com/api/auth/oauth2/token",
  credentials: vaultCredentialsProvider({
    path: "prod/apps/agent/server/oauth-clients/billing"
  }),
  resource: "api://billing",
  scope: ["invoices:read"]
});

refresher.start();

const token = await refresher.getToken();

Vault

The Vault provider uses the node-vault SDK. It reads KV v2 secrets from the secret mount by default and expects client_id and client_secret fields. Pass endpoint, token, and namespace explicitly, or let it read VAULT_ADDR, VAULT_TOKEN, and VAULT_NAMESPACE.

The default authctl Vault path shape is:

prod/apps/<client_app_id>/<client_identity>/oauth-clients/<resource_server_id>

Behavior

  • start() starts an async setInterval refresh loop.
  • stop() clears the interval.
  • refresh() forces a token request and updates the cache.
  • getToken() returns a cached valid token, or performs one foreground refresh if startup refresh has not completed or the token is expired.
  • Background refresh failures do not erase the last still-valid token.

Testing

Run the package tests:

bun test packages/auth-client

Run the functional example smoke from the repo root:

bun run examples:smoke

That command starts local Postgres and Vault dev containers, migrates the local auth API database, creates an authctl resource server and OAuth client, writes the one-time client credentials into Vault, and runs the Node and Go example apps against the live local token endpoint.

Release

Version packages/auth-client/package.json independently when the TypeScript runtime client changes. npm publishing is handled by GitHub Actions trusted publishing through .github/workflows/publish-auth-client.yml.

Configure the npm trusted publisher:

@anmho/auth-client -> anmho/auth / publish-auth-client.yml