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 🙏

© 2025 – Pkg Stats / Ryan Hefner

store-parameters

v1.1.3

Published

CLI tool for import and export SSM parameters

Readme

store-parameters

CLI tool for import and export SSM parameters

oclif Version Downloads/week Buy Me a Coffee

Features

  • 🔄 Import & Export - Seamlessly import and export AWS SSM parameters to/from CSV files
  • 👤 AWS Profile Support - Select from multiple AWS profiles with interactive prompts and MFA support
  • 🔐 1Password Integration - Reference secrets directly from 1Password vaults using op:// URI format
  • 🔒 Secure Strings - Full support for both String and SecureString parameter types
  • 📊 Custom Delimiters - Support for CSV, TSV, and custom delimiter formats
  • ✅ CSV Validation - Built-in validation to ensure data integrity before import

Usage

$ npm install -g store-parameters
$ store-parameters COMMAND
running command...
$ store-parameters (--version)
store-parameters/1.1.3 linux-x64 node-v24.11.0
$ store-parameters --help [COMMAND]
USAGE
  $ store-parameters COMMAND
...

Commands

store-parameters export FILE

Export SSM path to csv file

USAGE
  $ store-parameters export FILE -p <value> [--json] [-d <value>] [--profile <value>] [--region <value>]

ARGUMENTS
  FILE  Output csv file

FLAGS
  -d, --delimiter=<value>  Custom delimiter of csv file
  -p, --path=<value>       (required) SSM path to export
      --profile=<value>    AWS profile name in ~/.aws/credentials
      --region=<value>     [default: ap-southeast-2] AWS region

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  Export SSM path to csv file

EXAMPLES
  $ store-parameters export <path-to-csv-file> --path </ssm/path>

See code: src/commands/export.ts

store-parameters help [COMMAND]

Display help for store-parameters.

USAGE
  $ store-parameters help [COMMAND...] [-n]

ARGUMENTS
  [COMMAND...]  Command to show help for.

FLAGS
  -n, --nested-commands  Include all nested commands in the output.

DESCRIPTION
  Display help for store-parameters.

See code: @oclif/plugin-help

store-parameters import FILE

Import csv file to SSM

USAGE
  $ store-parameters import FILE [--json] [-d <value>] [--profile <value>] [--region <value>]

ARGUMENTS
  FILE  Input csv file

FLAGS
  -d, --delimiter=<value>  Custom delimiter of csv file
      --profile=<value>    AWS profile name in ~/.aws/credentials
      --region=<value>     [default: ap-southeast-2] AWS region

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  Import csv file to SSM

EXAMPLES
  $ store-parameters import <path-to-csv-file>

See code: src/commands/import.ts