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-mfa-cli

v0.0.6

Published

If you have set up the [Multi-factor Authentication](https://aws.amazon.com/iam/features/mfa) for your AWS account in order to use AWS CLI with this account you'll need to use Authenticator app to generate temporary credentials. Our AWS MFA CLI does that

Readme

npm

AWS MFA CLI

If you have set up the Multi-factor Authentication for your AWS account in order to use AWS CLI with this account you'll need to use Authenticator app to generate temporary credentials. Our AWS MFA CLI does that for you and creates a new temporary account within ~/.aws/credentials file.

Installation

npm install -g aws-mfa-cli

Requirements: Node.js v20+

Usage

Quick Start with CLI Options

# Basic usage with CLI options
mfa --profile mfa-profile --account 123456789012 --user john.doe

# With custom duration (1 hour)
mfa -p dev-mfa -a 123456789012 -u john.doe -d 3600

Environment Variables Setup

You can also set up environment variables instead of passing CLI options every time:

  1. Create a .env file in your project directory or set environment variables:
TOKEN_PROFILE_NAME=mfa-profile
ACCOUNT_NUMBER=123456789012
ACCOUNT_NAME=your.username
MAIN_PROFILE_NAME=default
TOKEN_TTL=43200
  1. Run the command:
mfa

CLI Options

  • --profile, -p - AWS profile name to update (default: from TOKEN_PROFILE_NAME env var)
  • --account, -a - AWS account number (default: from ACCOUNT_NUMBER env var)
  • --user, -u - MFA device user name (default: from ACCOUNT_NAME env var)
  • --source, -s - Source profile name (default: from MAIN_PROFILE_NAME env var or 'default')
  • --duration, -d - Token duration in seconds (default: from TOKEN_TTL env var or 43200)

Environment Variables

  • TOKEN_PROFILE_NAME - The name of the new temporary profile (e.g., mfa)
  • MAIN_PROFILE_NAME - The name of your main AWS profile. More details on the initial AWS CLI configuration here
  • ACCOUNT_NUMBER - Your main AWS account ID. How to find your AWS ID
  • ACCOUNT_NAME - Your IAM User name. To find it use this instruction, but instead look for IAM User in a dropdown
  • TOKEN_TTL - Defines for how many seconds the temporary account is valid. Max value is 129600 seconds (36 hours)

How it works

  1. Run the command with either CLI options or environment variables
  2. Input an MFA token from your authenticator app when prompted
  3. Press enter and wait for the app to finish
  4. Done! You can use your newly generated AWS profile within the specified duration

Contribution

We'll be happy to help if you have any issues or suggestions. PRs are welcome!