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 🙏

© 2025 – Pkg Stats / Ryan Hefner

versee

v1.0.2

Published

A simple node password manager

Downloads

15

Readme

Versee

Versee is an Interactive CLI Password Manager written in Typescript and powered by NodeJS. versee was developed, because I needed a simple yet powerfull password manager with the following features:

  • File based
  • Secure with AES256
  • Open source
  • OS agnostic
  • Simple to use and (few commands)
  • Command Line Interface
  • No embedded mechanisms for share password (you can choose your own, for example Dropbox SugarSync or whatever)

Install

Versee is written in Typescript and powered by in NodeJS. If you do not have it already you can install from NodeJS website .

npm install versee -g

Getting started

After install it you can launch a versee session simply by typing

versee

now you are in versee session, here you can type commands. We will start to type help for show the list of availble commands. Now let's create a new file called personal_credentials that will hold our personal username password for our social logins (we will refer to credentials as douple of username and passwords). Move to the folder you want to keep the file (let's say the home folder) and type:

init personal_credentials

we are prompt to type the master password. The master password will be used for encrypt the file that will contains the credentials. Warning at this time there is no check about for the strength of the password but is strongly suggested to choose a long and an hard to guess password. Morover if you forget the password the only way to decrypt the file is brute force it (try to input passwords until it find the right one), and could theorically be a impossible, or anyway a very hard task. At this time there are no mechanisms for fight against bruteforcing, but few methods are in consideration.

After init a file we can start to add some credentials with the command add for example let's add a facebook credentials, let's type:

add facebook

we are asked to enter the master_password. After enter the master password we can enter username and password of our facebook account, which will be stored in the file that we just init. Let's add one more for example twitter

add twitter

We notice that this time versee did not asked our master password. This because versee remembers the password (in memory) during the session, so you do not have to type for every operation. Let's list the credentials that we have stored. List will not show the password for security reasons. If you want to show the password of one account you can use the command search. For example search facebook.

list

Let's say we want to share some credentials with our collegues. Let's init one more file that we will share over Dropbox. Let's type:

init office_credentials

Now we just created another encrypted file with another master password which will contains only the credentials that we will share with our collegues. In one session you can switch over files with the command switch. For example

switch personal_credentials

it will switch to use our personal_credentials file. If you loose track on which file you are using you can type:

which

If you want to quit versee just type exit.