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

@evup/cli

v0.1.10

Published

EvUp CLI — authenticate and manage your EvUp.Cloud account from the terminal

Readme

evup — the EvUp.Cloud CLI

Authenticate against EvUp.Cloud and use the Anthropic proxy with per-plan model routing, all from your terminal.

$ evup login        # pair your device, get a token
$ evup profile      # who you are, what plan
$ evup plan         # show current plan
$ evup claude "fix" # run claude with your plan's models injected

Requires Node.js 18 or later (Node 20+ recommended for Ink).

Install

Recommended: install with your package manager

# npm
npm install -g @evup/cli

# pnpm — works with hoisted linker (default is fine), avoid
# `pnpm link --global` from a workspace checkout
pnpm add -g @evup/cli

# yarn
yarn global add @evup/cli

# bun
bun add -g @evup/cli

The CLI lands on your PATH as evup immediately.

Note on pnpm: pnpm's strict symlink layout can leave react (a peer of ink) unresolvable from the bundled dist/index.mjs if the install path is stale. If evup --help errors with ERR_MODULE_NOT_FOUND: react, run pnpm remove -g @evup/cli && rm -rf ~/.pnpm-store/v11/links/@evup ~/.pnpm-store/v11/links/@/ink-gradient then reinstall with pnpm add -g @evup/cli. npm, yarn, and bun aren't affected.

Try before you install

# pnpm
pnpm dlx @evup/cli <command>

# npm
npx @evup/cli <command>

# yarn
yarn dlx @evup/cli <command>

# bun
bunx @evup/cli <command>

To upgrade later:

npm update -g @evup/cli        # or pnpm update -g @evup/cli / yarn global upgrade @evup/cli / bun update -g @evup/cli

Sign in

evup login

The CLI prints a short code and a URL. Open the URL in any browser, sign in to EvUp.Cloud, paste the code, and click Approve. The CLI polls until you do, then saves the token locally so the next command doesn't have to ask again.

To sign out:

evup logout

Commands

| Command | What it does | | --------------------- | ------------------------------------------------------------------------------- | | evup login | Pair your device, save the access token. --open launches the browser for you. | | evup logout | Forget the stored credentials. | | evup profile | Show who you are, your plan, and the token expiry. | | evup org | List organizations, switch the active one with ↑/↓ + Enter. | | evup plan | Show current plan. evup plan upgrade plus opens checkout in the browser. | | evup claude [args…] | Run claude with the right ANTHROPIC_* env vars for your plan. |

evup <command> --help for options on every subcommand.

Troubleshooting

"Server unreachable" — the CLI is pointing at the wrong URL. If you're not a developer working on EvUp.Cloud itself, the default URL is what you want. Run evup profile to see what URL is configured; the fix is to ask whoever runs your EvUp deployment.

"Token expired" — run evup login again.

License

MIT — see LICENSE.