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 🙏

© 2024 – Pkg Stats / Ryan Hefner

auxydize

v1.0.4

Published

Auxydize is a Time-Based One-Time Password authenticator app for the command line.

Downloads

4

Readme

auxydize

Auxydize allows you to store, manage, and use your Time-Based One-Time Password secrets on the command line.

For SEO: This is basically Google Authenticator as a CLI.

Installation

npm install -g auxydize --production

Usage

Import secrets:

$ aux import --file ~/Desktop/google-authenticator-qr-code.png
[aux]# reddit successfully imported.
[aux]# Github:[email protected] successfully imported.

Generate TOTPs to satisfy an authentication challenge:

$ aux get --alias reddit
CODE   ISSUER NAME                            LIFETIME
844777 Reddit [email protected] 8s       current

View a secret's metadata:

$ aux details --alias reddit
KEY       VALUE
name      [email protected]
issuer    Reddit
alias     reddit
algorithm sha1
digits    6
interval  30
tzero     0
secret    <masked>

Notes:
First Reddit account I ever made! Woo!

Add a secret manually:

$ aux set --alias second-reddit --name [email protected] --issuer Reddit --secret "0f a3 9d bb 3e 10 18 7f 1c 94"
[aux]# second-reddit successfully inserted.

Edit a secret's metadata:

$ aux edit --alias reddit --newalias first-reddit --notes "Made a throwaway account, added 2FA to that, now I need to make sure I can distinguish them in my secret manager"
[aux]# Updated secret 'reddit'

Remove a secret:

$ aux rm second-reddit
✔ REMOVING A SECRET CANNOT BE UNDONE. Are you sure you want to remove the specified secret? … yes
[aux]# Deleted secret with alias: second-reddit

List all secrets:

aux ls
ISSUER    : NAME                                 : ALIAS
Reddit    : [email protected]      : first-reddit
Github    : [email protected]      : Github:[email protected]

Encrypt your local secrets database:

$ aux encrypt
[aux]# THIS COMMAND ENCRYPTS YOUR SECRETS DATABASE.
[aux]# IF YOU LOSE THE PASSWORD, THIS CANNOT BE UNDONE AND YOU WILL LOSE ALL SECRETS.
✔ Enter password to use for encryption (whitespace will be trimmed): … ****
✔ Re-enter password: … ****
[aux]# DB encrypted.

Decrypt your local secrets database:

$ aux decrypt
[aux]# Secrets database is encrypted.
✔ Please enter the database password: … ****
✔ Are you sure you want to decrypt the database? … yes
[aux]# DB decrypted.

Export your secrets:

$ aux export -qg --filepath ~/Desktop/export-qr-to-scan-with-google-authenticator.png
[aux]# Successfully wrote QR code to /home/testymctesterton/Desktop/export-qr-to-scan-with-google-authenticator.png

Contributing

Feel free to make PRs, but at this time I cannot commit to any level of responsiveness; your PR might sit unaddressed for a while, or forever.

Problems?

File an issue. Please search existing issues first.