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

@clef-sh/broker

v0.1.12

Published

Runtime harness for Clef dynamic credential brokers

Readme

@clef-sh/broker

Runtime harness for Clef dynamic credential brokers. Write a create() function that generates credentials — the SDK handles age encryption, KMS wrapping, envelope construction, response caching, and graceful shutdown.

Install

npm install @clef-sh/broker

Quick start

import { createHandler } from "@clef-sh/broker";

const broker = createHandler({
  create: async (config) => ({
    data: { DB_TOKEN: await generateRdsIamToken(config.DB_ENDPOINT) },
    ttl: 900,
  }),
});

// Lambda
export const handler = () => broker.invoke();
process.on("SIGTERM", () => broker.shutdown());

The broker works in any JavaScript context — Lambda, Cloud Functions, Azure Functions, containers, plain Node.

Features

  • createHandler() — returns a BrokerInvoker with invoke() and shutdown() methods
  • serve() — convenience HTTP server wrapper for containers/VMs
  • packEnvelope() — standalone envelope construction for advanced use
  • validateBroker() — test harness for registry contributions
  • Response caching — caches envelopes for 80% of TTL, matching the agent's polling schedule
  • Tier 2 revocation — automatically calls revoke() on rotation and shutdown
  • Structured loggingonLog(level, message, context) for observability
  • KMS envelope encryption — AWS KMS, GCP Cloud KMS, Azure Key Vault

Configuration

CLEF_BROKER_IDENTITY=api-gateway        # Envelope identity
CLEF_BROKER_ENVIRONMENT=production       # Envelope environment
CLEF_BROKER_KMS_PROVIDER=aws            # aws | gcp | azure
CLEF_BROKER_KMS_KEY_ID=arn:aws:kms:...  # KMS key for wrapping

# Handler config (prefix stripped, passed to create())
CLEF_BROKER_HANDLER_DB_ENDPOINT=mydb.cluster-abc.rds.amazonaws.com
CLEF_BROKER_HANDLER_DB_USER=clef_readonly

Broker Registry

Browse and install ready-made broker templates:

clef search              # List available brokers
clef install rds-iam     # Download a broker template

Official brokers: registry.clef.sh

Documentation

License

MIT