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

@dotenvup/format

v0.3.0

Published

Core parser and writer for the .env.up encrypted environment file format

Readme

@dotenvup/format

Reference implementation of the DotEnvUp v1 Format Specification.

Core parser and writer for the .env.up encrypted environment file format.

What is .env.up?

An encrypted .env file with visible metadata — a "half-open envelope." You can read the key names, versions, and timestamps on the outside without decrypting the secret values inside.

#!dotenvup v1
# Encrypted-By: @alice
# Created: 2026-02-25T10:00:00Z
# Algorithm: x25519-xchacha20-poly1305
# Encrypted-For: @alice, @bob, @ci
# Key-Id: 066g6-qvv3E
# Project: my-saas-app

[keys]
DB_HOST          v3  2026-02-10T08:00:00Z  @alice
DB_PASSWORD      v5  2026-02-15T10:30:00Z  @alice   # rotated
API_KEY          v2  2026-02-01T00:00:00Z  @alice

[encrypted]
recipient:@alice  nonce:abc123...  ephemeral:def456...  payload:SGVsbG8g...
recipient:@bob    nonce:abc123...  ephemeral:ghi789...  payload:bGQhIFRo...

Installation

npm install @dotenvup/format

Format Specification

This package implements the DotEnvUp v1 open standard:

  • Format Spec (v1) — Full specification: file structure, cryptography, identity model, security guarantees.
  • Cryptography: X25519 key exchange + XChaCha20-Poly1305 (AEAD), via libsodium.
  • Multi-recipient: Encrypt once, decrypt by any authorized recipient (users or CI/CD machines).
  • Lossless roundtrip: Comments, blank lines, and key ordering from the original .env are preserved.
  • Optional [policy]: Per-recipient value subsets; merge import so teammates cannot wipe keys they never decrypted.

Documentation

License

MIT — DotEnvUp is an open standard.