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

my-pwd

v1.0.6

Published

Easy and secure CLI to store and manage your passwords.

Downloads

18

Readme

:lock: my-pwd

Dependency DevDependecy Downloads License

Easy and secure CLI to store and manage your passwords.

Console

Why?

Nowadays everyone in the world have thousand password or pin to remember. It's impossible to do only with our memory and use the notes to store them it's not safe. So how do I remember its? A good way it is to use a password manager. The fast and easy way is a CLI password manager like my-pwd.

Install

$ npm install -g my-pwd

Getting Start

Nothing to configure. Install the NPM package and you are ready to store your information in a safely place. Digit my-pwd new to store new credentials or digit my-pwd -h to view all the avaiable commands.

How does it works?

The script save all the credentials in a JSON file encrypted by Advanced Encryption Standard. AES uses a key to create an unreadable hash. This key must be entered by you. Yes, its similar to remember a password but if you use one encryption key to store all credentials you can forget all the others password and remember only one.

Security

The script run locally, it NEVER send nothing across internet and the dependencies are all up to date and secure. Moreover the possibility to crack AES is inifity small, if you want to know more you can read this answer.

Commands

Options:

  -v, --version           Output the version number
  -h, --help              Output usage information

Commands:

  new                     Store credentials into safely place.
  list                    Show all records stored.
  read [options]          Copy to clipboard the password of a stored record. Use "--show" if you want to view the password in the console.
  group [options] <name>  Create a new group. Use "--remove" to remove one.
  generate <length>       Generate a secure password on your device.
  remove <identifier>     Remove a record.
  update <field>          Update a field. You can use: email, pwd, username, group. Example: "my-pwd update pwd"
  export                  Exports the JSON file containing the database

Roadmap

  • Command to export database :white_check_mark:
  • Command to import database
  • Add more languages
  • Use AES with 256 bits instead of 192.
  • ...continuously updated

JavaScript Style Guide