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

pass-vault

v0.5.3

Published

A command line app for managing secrets.

Downloads

11

Readme

Pass Vault

A command line tool for managing secrets.

npm i -g pass-vault

Commands

ui

pass ui

Pass Vault now includes a GUI.

Gen

pass gen

Generate a password.

Flags:

  • -t | --type

    default to 1

    0: includes only numbers

    1: includes numbers and characters

  • -l | --length

    default to 8

Login

pass login USER SECRET

PassVault will create different store files named USER.store.json for each USER.

Secret is your encryption key, at least 4 characters, required.

Note that: PassVault will try to repeate your secret until 16 characters long. This is because the encryptor used internally requires a key at least 16 characters long.

Once logged in:

Save

pass save foo --Account [email protected] --Password foobarbaz

You can save key-value pairs as many as you want.

For example, you might want to add other information like --url https://foo.com later.

If you save a new item which actually exists in the your store, your information will be updated, and overwritten.

Find

pass find foo

# This will print:
# foo:
# Account: [email protected]
# Password: foobarbaz

Clip

pass clip gmail password

# This will clip your gmail's password to your clipboard.

Currently supports windows and wsl ubuntu.

List

pass list

Print all your saved items' name.

Logout

pass logout

Note: logout will not remove your store file, you can login later and continue to use.

Backup

pass backup

Backup your store file (encrypted) to cwd (current working directory).

Note that: Your backup file will have a format like this: USER.store.json-TIMESTAMP Please keep this format untouched.

Restore

pass backup

Restore your store from a backup file.

Note that: yout should provide a relative path. e.g. USER.store.json-TIMESTAMP

Export

pass export

Export your secrets (unencrypted) to cwd, use with caution.