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

storemyapi

v1.1.7

Published

A command-line tool to sync your `.env` keys to the cloud and share them across machines and teammates.

Readme

StoreMyAPI CLI

A command-line tool to sync your .env keys to the cloud and share them across machines and teammates.

Installation

npm install -g storemyapi

Getting started

storemyapi login
storemyapi init
storemyapi push

That's it. Your keys are in the cloud. On another machine, run storemyapi pull and you're back in business.

Commands

login

Opens a browser to authenticate. If that's not possible, use --no-browser and follow the instructions in the terminal.

storemyapi login
storemyapi login --no-browser

whoami

Shows who you're currently logged in as.

logout

Clears your local session.

projects

Lists all your projects with their key counts and roles.

init

Creates a new project and links it to your current folder. Writes a .storemyapi.json file locally.

link

Links an existing project to your current folder. Pass a name or ID directly, or pick from a list. If a project is already linked, it will ask before switching.

storemyapi link
storemyapi link my-project
storemyapi link <project-id>

push

Pushes keys from your local env file to the project. Pushes everything by default, or a single key if specified.

Auto-detection: looks for .env.local first, then falls back to .env. Use -f to target a specific file.

storemyapi push
storemyapi push API_KEY
storemyapi push -f .env.local
storemyapi push -f .env.production

pull

Pulls keys from the project into your local env file. Merges with what's already there.

Auto-detection: pulls into .env.local if it exists, otherwise .env. Use -f to target a specific file.

storemyapi pull
storemyapi pull API_KEY
storemyapi pull -f .env.local
storemyapi pull -f .env.staging

key

Work with individual keys directly — no env file involved.

storemyapi key list
storemyapi key get API_KEY
storemyapi key set API_KEY somevalue
storemyapi key delete API_KEY

key set will ask for confirmation before overwriting an existing key.

share

Collaborate with teammates on a project.

As the owner:

storemyapi share add [email protected] read
storemyapi share add [email protected] write
storemyapi share remove [email protected]
storemyapi share list

As the receiver:

storemyapi share invites

Lists your pending invites as a dropdown. Select one and you'll be asked to accept or decline on the spot. After accepting, run storemyapi link to connect the project to a local folder.

doctor

Checks your setup end to end — Node version, auth, API connectivity, linked project, and whether a local env file exists. Good first step when something feels off.

storemyapi doctor

audit

Compares your local env file against the cloud and shows what's out of sync. Tells you exactly what to run to fix it.

Auto-detection: checks .env.local first, then .env. Use -f to target a specific file.

storemyapi audit
storemyapi audit -f .env.local

Reports three things:

  • Keys in the cloud that are missing from your local file
  • Keys in your local file that haven't been pushed to the cloud
  • Keys that exist on both sides but have different values

vercel deploy — [BETA]

Note: This command is still under active development and may not work as expected in all cases. Use with caution in production environments.

Pushes your CLI-encrypted keys directly to a Vercel project as environment variables. Browser-encrypted keys cannot be deployed via the CLI — use the web dashboard for those.

storemyapi vercel deploy
storemyapi vercel deploy --token <vercel-token> --project <project-id>
storemyapi vercel deploy --token <vercel-token> --project <project-id> --team <team-id>
storemyapi vercel deploy --target production
storemyapi vercel deploy -k API_KEY -k STRIPE_SECRET_KEY

Options:

| Flag | Description | |---|---| | -t, --token | Your Vercel API token | | -p, --project | Vercel project ID | | --team | Vercel team ID (optional, for team projects) | | --target | Environment target: production, preview, or development (default: production) | | -k, --key | Key name to deploy (repeatable). Omit to deploy all CLI-encrypted keys | | -y, --yes | Skip confirmation prompt |

Your Vercel token is never stored — it is used only for the duration of the request.

Files

  • ~/.storemyapi/config.json — stores your auth token. Never commit this.
  • .storemyapi.json — links your folder to a project. Gitignored by default.
  • .env / .env.local — where pulled keys land and pushed keys are read from.

Requirements

Node.js 18 or higher.