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

authcli

v0.4.0

Published

A simple CLI app for managing your two-factor authentication tokens

Downloads

14

Readme

auth npm version

A simple CLI app for managing your two-factor authentication tokens

This is mostly a wrapper library that makes getting your auth tokens much easier, with automated clipboard copy, QR code secret generation (to easily re-add codes to your mobile apps) & shortcut names (to get the auth codes without having to type in the full name).

Installation

You can install with npm install -g authcli. If you do not wish to install from npm, you can install it manually:

$ git clone https://github.com/sam3d/auth
$ cd ./auth
$ npm install
$ npm link

Usage

The app can be used by the auth command.

$ auth
Usage: auth <name|alt> [--qr]
Generate your two factor authentication codes
(Available tokens are shown below)

  Google (g, go)
  GitHub (gh, hub)

$ auth gh
104295

It reads the tokens from a .json file located at $HOME/.local/share/auth/tokens (not tokens.json). The contents of the file should resemble something like this:

[
	{
		"name": "Google",
		"alt": ["g", "go"],
		"secret": "61f91a36a 751666f9 78ec5dd50e4c1e7 654580e1"
	},
	{
		"name": "GitHub",
		"alt": ["gh", "hub"],
		"secret": "Dcb2 9d7f a652 17A7 bf18 54bb bfc5"
	}
]

You can also generate QR code tokens to import into Google Authenticator or another similar application that accepts QR codes for quick and easy importing. For any code, just add the --qr flag and it will output both the secret and generated QR code (e.g. auth gh --qr);

Adding your own tokens

If you wish to add your own token, do it in the structure above with a name string, alt array and a secret string (the spaces and capital letters don't matter and will be stripped out during parsing). The alt codes allow you to type auth gh instead of auth github (names are case insensitive).

Copying to the clipboard

It uses the node-copy-paste library to copy the token value to the clipboard on Mac OS X (using pbcopy), Linux, FreeBSD & OpenBSD (using xclip) and on Windows (using clip).