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

@elding/cli

v0.9.23

Published

Protect HTTP API keys with Elding's secure local injection proxy

Readme

@elding/cli

Protect HTTP API keys while developing with AI coding tools. The Elding CLI runs your application behind a local proxy that injects each key into the outgoing HTTPS request. The real key never enters your application's memory or process.env.

npm install -g @elding/cli

Always install the scoped package @elding/cli. The unscoped elding package is unrelated.

Quickstart

elding login
elding init
elding proxy -- npm run dev

Use @elding/sdk in your code:

import OpenAI from "openai";
import { configure } from "@elding/sdk";

const openai = new OpenAI(
  await configure("OPENAI_API_KEY", "https://api.openai.com")
);

Elding is intentionally specialized in HTTP API keys. Keep DATABASE_URL, JWT_SECRET, REDIS_URL, certificates, and database passwords in your platform's environment variables.

Commands

| Command | Purpose | |---|---| | elding login / logout | Sign in or out; the token is stored in the OS keychain | | elding init | Link the current project to an API key set | | elding proxy -- <cmd> | Run a command behind the secure local injection proxy | | elding deploy | Generate the scoped deployment token and production variables | | elding keys / sets | List API key names or accessible sets | | elding use <name> | Switch the active set | | elding status / whoami | Show local state or the signed-in user | | elding doctor | Diagnose authentication, set, keys, and proxy configuration | | elding open | Open the Elding dashboard |

The local proxy is the only execution mode. API keys are never injected wholesale into process.env.

Security model

  • The proxy binds to 127.0.0.1 only.
  • API keys are inserted into request headers at the last moment.
  • Host locking prevents a key from being sent to an unauthorized domain.
  • Anti-SSRF checks block private and metadata-network targets.
  • Key values, request bodies, responses, and query strings are never logged.

Documentation: https://docs.elding.app/en/cli/installation