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

op-env-loader

v1.0.0

Published

A script to pull a document from 1Password and save it as an .env file

Readme

op-env-loader

A utility for syncing environment variables from 1Password to your local .env file.

Overview

op-env-loader is a command-line tool that pulls a secure note from your 1Password vault and saves it as a .env file in your project. This allows you to securely store and share environment variables with your team while keeping them in sync with a trusted source.

Prerequisites

  • 1Password application installed on your computer
  • 1Password CLI integration enabled (see setup instructions below)
  • Node.js (version 14 or higher)

Setup 1Password CLI Integration

  1. Open 1Password application
  2. Go to Settings/Preferences
  3. Navigate to the "Developer" tab
  4. Enable the "Integrate with 1Password CLI" option
  5. Follow any additional prompts to complete the setup

Installation

npm install -g op-env-loader

Or use it directly with npx:

npx op-env-loader <1password-uuid>

Usage

  1. Store your environment variables in a secure note in 1Password
  2. Find the UUID of the secure note:
    • In 1Password, go to Settings/Preferences
    • Navigate to Advanced
    • Enable "Show debugging tools"
    • Right-click on your secure note in 1Password
    • Select "Copy item UUID" to copy the UUID to your clipboard
  3. Run the command:
op-env-loader <1password-uuid>

How It Works

  • The tool connects to 1Password using the CLI integration
  • It retrieves the secure note content using the provided UUID
  • If no local .env file exists, it creates one with the content from 1Password
  • If a local .env file already exists:
    • It compares the local file with the remote version
    • Shows a diff of the changes (with values hidden for security)
    • Asks for confirmation before overwriting the local file

Features

  • Secure synchronization of environment variables
  • Diff view to see what's changing (without exposing sensitive values)
  • Confirmation prompt before overwriting existing files
  • Simple one-command operation

Security Notes

  • Your environment variables are never transmitted to any third-party servers
  • All operations happen locally between your 1Password vault and your filesystem
  • The tool masks actual values when showing diffs to prevent accidental exposure

License

MIT

Contributing

Author

Cantilever

npm License