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

@michaelthielemann/kestrel-authn-single

v5.8.1

Published

authn@1 with one user from config (scrypt hash) and in-memory sessions.

Readme

authn/single

One user from config (username, scrypt passwordHash, rolesclaims.roles), sessions held in memory with a TTL. Needs no other contract.

Every step returns a Result; the in-memory implementation never answers TRANSIENT, so the only client-visible failure is UNAUTHENTICATED (401). authn.loadIdentity and authn.logout expect a pipeline that runs authn.requireUser first (boot's dataflow check enforces it) and answer UNAUTHENTICATED when identity or token is missing anyway.

| Step | reads | writes | errors | |---|---|---|---| | authn.login | – | token, identity, result | UNAUTHENTICATED | | authn.identifyUser | – | token?, identity? | – | | authn.requireUser | – | token, identity | UNAUTHENTICATED | | authn.loadIdentity | identity | result | UNAUTHENTICATED | | authn.logout | token | result | UNAUTHENTICATED |

Generate a hash: node -e "import('@michaelthielemann/kestrel-authn-single/impl').then(m => console.log(m.hashPassword(process.argv[1])))" -- <password> Not included: multiple users, persistence of sessions across restarts, password change.

Generated from the manifest

@michaelthielemann/kestrel-authn-single – module authn/single: provides authn@1.

| Config | Type | Required | Default | |---|---|---|---| | username | string | yes | – | | passwordHash | string | yes | (secret) | | sessionTtlSeconds | integer | no | 86400 | | roles | array | no | [] |

| Step | Summary | Reads | Writes | Input | Output | Errors | |---|---|---|---|---|---|---| | authn.login | Log in with credentials | – | token, identity, result | { username: string, password: string } | { token: string, identity: object, … } | 401 invalid credentials | | authn.identifyUser | Identify the caller if a valid token is present | – | token?, identity? | – | – | – | | authn.requireUser | Require a valid session | – | token, identity | – | – | 401 not authenticated | | authn.loadIdentity | Current identity | identity | result | – | { id: string, claims: object, … } | 401 not authenticated | | authn.logout | End the current session | token | result | – | { ok: boolean, … } | 401 not authenticated |