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

@inhanbyeol/ssm-env-uploader

v1.0.2

Published

A CLI tool to upload environment variables from `.env` files to AWS SSM Parameter Store.

Downloads

283

Readme

ssm-env-uploader

A CLI tool to upload environment variables from .env files to AWS SSM Parameter Store.

Features

  • Concurrent Uploads: Uploads multiple parameters in parallel for faster execution.
  • Secure: Stores parameters as SecureString.
  • Easy Configuration: Simple JSON configuration file.
  • Profile Support: Supports AWS CLI profiles.

Installation

npm install -g @inhanbyeol/ssm-env-uploader
# or
pnpm add -g @inhanbyeol/ssm-env-uploader

Initialization

Run the init command to generate a default configuration file (seu-cli.json) in your project root:

seu --init

Configuration

The tool uses seu-cli.json for configuration.

{
  "basePath": "your-app-name",
  "region": "ap-northeast-2",
  "cliProfile": "default",
  "concurrency": 5,
  "envFile": {
    "dev": ".env.dev",
    "prod": ".env.prod"
  }
}
  • basePath: The prefix for your SSM parameters (e.g., /your-app-name).
  • region: AWS region (e.g., ap-northeast-2).
  • cliProfile: (Optional) AWS CLI profile to use.
  • concurrency: (Optional) Number of parallel uploads (default: 1).
  • envFile: Mapping of environment names to .env file paths.

Usage

To upload environment variables for a specific environment:

seu <env>

Example:

seu dev
# Uploading .env.dev to Parameter Store...
# ...
# Upload to Parameter Store completed successfully: /your-app-name/dev (15 items) from .env.dev

Important Notes

[!WARNING] > AWS CLI Requirement: The aws command line interface must be installed and available in your system path.

[!IMPORTANT] > Credential Management: If the .env file you are uploading contains AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY:

  • We strongly recommend setting the cliProfile in your seu-cli.json. This ensures the upload is performed using the specific permissions associated with that profile.
  • If cliProfile is NOT set, there is a risk that the AWS CLI might attempt to use the credentials found in your .env file (if they explicitly override the environment), potentially leading to authentication with the wrong account or insufficient permissions.

Prerequisites

  • AWS CLI must be installed and configured.
  • The AWS user must have permissions to put parameters in SSM.