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

@missing-comma/secrets

v1.3.0

Published

A simple password manager using a command-line interface

Downloads

2

Readme

Secrets

A simple password manager using a command-line interface

Table of Contents

. Install . Description . Setup . Commands . Roadmap

Install

$ npm install --global @missing-comma/secrets

Description

"Secrets" is a command-line interface password manager designed to help users store and manage their passwords securely. With "Secrets", users can easily define and create strong passwords, which are then encrypted using an encryption algorithm of their choice. This tool is especially useful for individuals who need to manage multiple accounts across various platforms and want a safe and reliable way to store their passwords.

By using "Secrets", users can avoid the need to remember numerous passwords, which can be time-consuming and difficult to manage. Instead, they can simply access their password database through the command-line interface and quickly retrieve the password they need for a specific account. This not only saves time but also reduces the risk of forgetting passwords or using weak ones.

Setup

To use "Secrets", you must first install the package on your local machine.
Once you have installed the package, you will need to set a password before you can start using the password manager. To do this, run the following command:

$ secrets password-set

This will prompt you to enter a password. Make sure to choose a strong and secure password that you can remember, as you will need to enter it every time you want to access your password database.

After setting your password, you can start using "Secrets" to store and manage your passwords. By default, your passwords will be encrypted using the AES encryption algorithm. However, you can change this to a different encryption algorithm by modifying the config file. To do this, simply edit the .missing-comma/secrets/config.json file and change the encryption_algorithm parameter to the desired algorithm.

Note that if you forget your password, there is no way to recover it. Therefore, it is important to choose a password that you can remember or store it in a safe place.

Commands

Roadmap

  • Add a proper README to the package
  • Add command header with version information, etc to every command
  • Deattach the [PasswordContainer] component from the code
  • Enhance the "--help" output for the commands
  • Organize the root directories
  • Organize the /ui/components directories
  • Add unit tests
  • Add integration tests
  • Configure publish command (without skipping the lint and test command)

CLI

secrets.js <command>

Run a command

Positionals:
  command  command to run             [choices: "get", "create", "password-set"]

Options:
  --help     Show help                                                 [boolean]
  --version  Show version number                                       [boolean]
  --verbose  Show more information                    [boolean] [default: false]