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

aws-rds-data-api-seeder

v0.1.2

Published

A package to bulk insert records into AWS RDS via the data-api.

Readme

AWS RDS Data-API Seeder

Installation

npm install --save-dev aws-rds-data-api-seeder

Usage

Standard

> npx ./scripts/seeds/users.js \
  --database my_database \
  --resource-arn arn:aws:rds:us-east-2:123456789012:cluster:my-aurora-cluster-1 \
  --secret-arn arn:aws:secretsmanager:us-west-2:123456789012:secret:my-path/my-secret-name-1a2b3c

Alternate Profile

In order to use a profile other than the default one configured in your .aws directory you need to specify the name via AWS_PROFILE environment variable.

Additionally you will need to specify AWS_SDK_LOAD_CONFIG=1 (see AWS docs) to be able to load config from the .aws/config file.

> AWS_SDK_LOAD_CONFIG=1 AWS_PROFILE=my-profile-name npx ./scripts/seeds/users.js \
  --database my_database \
  --resource-arn arn:aws:rds:us-east-2:123456789012:cluster:my-aurora-cluster-1 \
  --secret-arn arn:aws:secretsmanager:us-west-2:123456789012:secret:my-path/my-secret-name-1a2b3c

TypeScript

> npx ts-node ./scripts/seeds/users.ts \
  --database my_database \
  --resource-arn arn:aws:rds:us-east-2:123456789012:cluster:my-aurora-cluster-1 \
  --secret-arn arn:aws:secretsmanager:us-west-2:123456789012:secret:my-path/my-secret-name-1a2b3c

Help

> npx ./scripts/seeds/users.js --help
Usage: seeder [options]

Options:
  -d, --database <database name>     The name of the database to connect to. Can also by set by the SEED_DATABASE environment variable.
  -q, --schema <database name>       The name of the schema to use. Can also be set by the SEED_SCHEMA environment variable. (default: "public")
  -r, --resource-arn <resource arn>  The resource ARN of the database cluster. Can also be set by the SEED_RESOURCE_ARN environment variable.
  -s, --secret-arn <secret arn>      The secret ARN to give for the seed credentials. Can also be set by the SEED_SECRET_ARN environment variable.
  --region <region>                  The AWS region the cluster is in. Can also by set by the AWS_REGION environment variable.
  -n, --dry-run                      Rolls back the transaction instead of committing. Useful for testing operations.
  -vvv, --verbose                    Enable verbose logging.
  -h, --help                         display help for command