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

@coldsurf/parley

v0.1.0

Published

Git-style env sync between your machine and AWS Parameter Store + KMS. A self-hosted alternative to Doppler/Infisical for AWS-native teams.

Downloads

84

Readme

parley

Git-style env sync between your machine and AWS Parameter Store + KMS. A self-hosted alternative to Doppler/Infisical for AWS-native teams.

parley treats environment variables like source code: push, pull, diff. The store is your own AWS account (SSM Parameter Store, encrypted by KMS). No SaaS subscription, no third-party vault. Works great in TS monorepos.

Why parley

  • AWS-native, IAM-bound — secrets live in your account; access is governed by your existing IAM/SSO policies.
  • Git-style workflowparley push / pull / diff map cleanly to how you already think.
  • Monorepo-aware — first-class apps × profiles matrix in a typed parley.config.ts.
  • Ephemeral injectionparley run --app api --profile production -- node server.js (no disk writes).
  • CI-friendlyparley diff --exit-code fails the build when local and remote drift.

Install

pnpm add -D @coldsurf/parley
# or
npm i -D @coldsurf/parley

Quickstart

# 1. Generate a parley.config.ts at repo root
pnpm parley init

# 2. Edit prefix / region / kmsKeyId / apps mappings
# 3. Validate AWS credentials and KMS/IAM
pnpm parley doctor

# 4. Push your local .env.<profile> → SSM
pnpm parley push api production

# 5. Pull from SSM → local .env.<profile>
pnpm parley pull api production

Commands

| Command | Description | | --- | --- | | init | Scaffold parley.config.ts, sanity-check AWS credentials | | push | Local .env.<profile> → SSM (changes only) | | pull | SSM → local .env.<profile> | | diff | Compare keys between local and remote (values hashed) | | list | List SSM keys for an app/profile | | get / set / unset | Single-key operations | | run -- <cmd> | Inject env from SSM and exec a command (no disk writes) | | sync push|pull | Bulk push/pull across multiple apps/profiles | | doctor | Diagnose credentials, SSM access, KMS access, mappings |

Configuration

// parley.config.ts
import { defineConfig } from '@coldsurf/parley/config';

export default defineConfig({
  region: 'ap-northeast-2',
  prefix: '/myorg/myproject',
  kmsKeyId: 'alias/parley',
  apps: {
    api: { path: 'apps/api', profiles: ['development', 'staging', 'production'] },
    web: { path: 'apps/web', profiles: ['development', 'production'] },
  },
});

Comparison

| | parley | chamber | Doppler / Infisical | sops | | --- | --- | --- | --- | --- | | Backend | AWS SSM + KMS | AWS SSM + KMS | SaaS | File (any backend) | | Self-hosted | ✅ | ✅ | Paid plan | ✅ | | TS DX | ✅ | ❌ (Go) | ✅ | ❌ | | push/pull/diff | ✅ | partial | ✅ | partial | | Monorepo apps × profiles | ✅ | ❌ | partial | ❌ |

License

MIT © COLDSURF