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

@appuo/orbit

v1.0.10

Published

Switch Vercel identities instantly. Multi-account profile manager for Vercel CLI. No logout required.

Readme

Orbit

Orbit by AppUo

Switch Vercel identities instantly.

No logout. No shell hacks. No credential mess.

npm License: MIT Node.js


AWS has named profiles. Why doesn't Vercel?

Orbit gives Vercel the same power. More providers coming soon.

orbit add vercel personal
orbit add vercel company

orbit use vercel company
vercel deploy              # deploys as company. done.

orbit use vercel personal
vercel deploy              # deploys as personal. instant.

One command. Instant switch. No logout required.


🎯 Current Support

| Provider | Status | |----------|--------| | Vercel | ✅ Fully supported | | AWS | 🔜 Coming soon | | Supabase | 🔜 Coming soon | | Cloudflare | 🔜 Coming soon |

Orbit is built with a pluggable provider system. Vercel is the first provider, with more on the way.


📦 Install

npm install -g @appuo/orbit
# or
pnpm add -g @appuo/orbit

🧾 Release & Changelog Flow

Use this flow to keep CHANGELOG.md updated on every change/release:

# 1) Add an entry while working
pnpm changelog:add -- --type changed --message "Improve profile auth rollback"

# 2) Bump version for release
npm version 1.0.9 --no-git-tag-version

# 3) Move [Unreleased] notes into the new version + validate
pnpm release:prepare

# 4) Publish to GitHub Packages
npm login --scope=@appuo --auth-type=legacy --registry=https://npm.pkg.github.com
pnpm release:publish

# One-command release (version bump + changelog + publish + commit/tag/push)
pnpm release:ship
# or explicit version:
pnpm release:ship -- --version 1.0.9
# run everything except git push:
pnpm release:ship -- --no-push

Optional npmjs publish:

pnpm release:publish:npm

pnpm changelog:release will fail if [Unreleased] has no entries, to prevent empty release notes.


⚡ 30-Second Setup

# Add your personal Vercel account
orbit add vercel personal
# → Detects existing Vercel login automatically
# → Or launches `vercel login` for you

# Add your work Vercel account
orbit add vercel company
# → Say "n" to detected token, login as different user

# Switch instantly
orbit use vercel company
vercel deploy --prod       # deploys as company

orbit use vercel personal
vercel whoami              # shows personal account

No vercel logout. No vercel login. Just switch and go.


📖 Commands

| Command | What it does | |---------|-------------| | orbit add vercel <profile> | Add Vercel account (guided login) | | orbit use vercel <profile> | Switch identity instantly | | orbit list | See all profiles + emails | | orbit exec vercel <cmd> | Run with active profile | | orbit run vercel <profile> <cmd> | Run with specific profile | | orbit current | Show active profile | | orbit rotate-key | Rotate local encryption key | | orbit remove vercel <profile> | Remove a profile |


🧰 Global Flags

| Flag | Description | |------|-------------| | --json | Machine-readable output for automation | | --debug | Redacted debug stack traces |


🔄 How It Works

When you run orbit use vercel company, Orbit:

  1. Snapshots your current profile's auth.json
  2. Restores the target profile's auth.json
  3. Done — native vercel commands just work

No environment variable injection. No wrappers. The Vercel CLI reads its own auth file natively.

~/.orbit/
├── config.json              # Profile names + metadata (no secrets)
├── credentials.json         # Encrypted tokens (AES-256-GCM)
├── .key                     # Encryption key (chmod 600)
└── auth/
    └── vercel/
        ├── personal.json    # Auth snapshot
        └── company.json     # Auth snapshot

🔐 Security

  • Tokens encrypted with AES-256-GCM at rest
  • Credentials key and token store enforced at chmod 600
  • Auth snapshots stored with chmod 600
  • Config and auth directories enforced at chmod 700
  • Corrupt config/credential files are quarantined before reset
  • No secrets in config files
  • No shell modifications (.bashrc, .zshrc)
  • Zero native dependencies

🧯 Failure Modes & Recovery

  • Missing auth snapshot during orbit use: command fails safely and does not change current profile.
  • Missing auth snapshot during orbit exec/orbit run: Orbit falls back to token-scoped env execution.
  • Corrupt config.json or credentials.json: file is moved to *.corrupt-<timestamp> and re-initialized.

See the full runbook in docs/TROUBLESHOOTING.md.


🖥️ Cross-Platform

| | macOS | Linux | Windows | |--|-------|-------|---------| | Auth swap | ✅ | ✅ | ✅ | | Encrypted storage | ✅ | ✅ | ✅ | | CLI execution | ✅ | ✅ | ✅ |


🗺️ Roadmap

Orbit is built on a pluggable provider architecture. Adding new cloud providers is straightforward.

Coming Soon:

  • [ ] AWS Provider — Named profiles for AWS CLI
  • [ ] Supabase Provider — Multi-project switching
  • [ ] Cloudflare Provider — Workers + Pages account switching
  • [ ] Railway Provider — Multi-team support
  • [ ] Netlify Provider — Account switching
  • [ ] Profile import/export — Migrate between machines
  • [ ] Shell completions — bash, zsh, fish, PowerShell

Want a provider? Open an issue


🛠️ Development

git clone https://github.com/appuo/orbit.git
cd orbit && pnpm install
pnpm build
npm link
orbit --version

🤝 Contributing

See CONTRIBUTING.md.

📚 Additional Docs

📄 License

MIT — see LICENSE.