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

venv-sync

v2.0.0

Published

Sync and compare local .env variables with Vercel environment variables

Downloads

5

Readme

venv-sync

A command-line tool to compare local .env variables with Vercel environment variables. This tool helps you identify which environment variables exist in your local .env file but are missing from your Vercel project.

Features

  • Detects environment variables that exist locally but not in Vercel
  • Handles multiple .env files with interactive selection
  • Supports multiple values for the same variable
  • Masks sensitive values (shows only first 6 characters)
  • Two-step process: first shows differences, then handles Vercel additions
  • Interactive prompts for selecting which value to use when duplicates exist

Prerequisites

  • Node.js installed
  • Vercel CLI installed (npm i -g vercel)
  • Logged in to Vercel CLI (vercel login)

Installation

npm install -g venv-sync

Usage

In your project directory that contains a .env file and is linked to a Vercel project:

venv-sync

To select from multiple .env files in the current directory:

venv-sync --select

To specify a specific .env file:

venv-sync -e path/to/.env

Options

  • -e, --env <path>: Specify the path to your .env file (default: ".env")
  • -s, --select: Interactive selection of .env file when multiple exist
  • -V, --version: Output the version number
  • -h, --help: Display help for command

Example Output

Environment variables in local .env but not in Vercel:
----------------------------------------
API_KEY=abcdef******** (line 3)

STRIPE_SECRET (multiple values):
  - sk_test****** (line 5)
  - sk_live****** (line 6)

Would you like to add these variables to Vercel? [y/N]: y

Adding variables to Vercel:
----------------------------------------
Which environment for API_KEY? [Production, Preview, Development]: Production

Run this command to add the variable:
vercel env add API_KEY production

Multiple values found for STRIPE_SECRET:
1) Line 5: sk_test******
2) Line 6: sk_live******
Which value would you like to use for STRIPE_SECRET? (1-2): 1
Which environment? [Production, Preview, Development]: Production

Run this command to add the variable:
vercel env add STRIPE_SECRET production

Features Explained

Two-Step Process

  1. First, the tool shows all differences between your local .env and Vercel
  2. Then, if differences are found, it asks if you want to proceed with adding variables to Vercel

Multiple .env Files

If you have multiple .env files (e.g., .env, .env.local, .env.development), use the --select option to choose which file to check.

Duplicate Variables

If your .env file has multiple entries for the same variable, the tool will:

  1. Show all occurrences with their line numbers
  2. When adding to Vercel, prompt you to choose which value to use

Value Masking

For security, the tool only shows the first 6 characters of any value, masking the rest with asterisks.

Vercel Environment Selection

For each variable you choose to add, the tool will:

  1. Show which Vercel environments don't have the variable
  2. Let you choose which environment to add it to
  3. Show the command to add the variable

License

MIT