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

nisiu

v0.0.2

Published

nisiu is a password manager configurable with your own firebase account

Readme

Build Status

NPM version NPM downloads MIT License

nisiu is a completely free password manager configurable with your own firebase account.

General info

Nisiu was designed only for a personal use but it can be customized in order to be used by your friends and your family with a few steps.

Goals

  • ✅ Built to let you own and manage your passwords
  • ✅ Designed only for modern browsers
  • ✅ It's available online with no additional installation
  • ✅ It stores your data on firebase and you can set up easily your own private DB instance via env credentials
  • It's secure, it uses the AES algorithm for all the stored data by default
  • Google as authentication system
  • ✅ Completely open source under MIT license

Caveats

  • ❌ Doesn't work on old browser that do not support ES2017 javascript features
  • ❌ It's a clientside application so it needs javascript to be enabled
  • ❌ It doesn't work offline yet

Configuration

Google Account Creation

Make sure to have a google account. If you don't have any just create one

Firebase API Creation

You will need to set your own firebase credentials in the .env file. To do so you need to create an new project using the firebase console

  1. Click on the add project button
  2. Click on the "Add Firebase to your web app" button
  3. Replace the app credentials in the .env file

Build step

Once you have done all the steps above you are ready to start using nisiu. The last step is needed to build again the app using your new credentials.

  1. Install the npm dependencies npm i
  2. Run make build
  3. Open index.html with any modern browser and voilà!

Setup your DB Rules

With firebase you can easily control you application DB whitelisting the users that can read and write from it.

Easy rules

A simple way to configure your DB is to add the following rules via firebase console

{
  "rules": {
    "$user": {
      ".read": "auth.uid === $user",
      ".write": "auth.uid === $user"
    }
  }
}

More info about firebase database rules

Strict rules

You can enhance the security of your nisiu database using complexer rules like:

{
  "rules": {
    "$user": {
      ".read": "auth.uid === $user && root.child('whitelist').hasChild(auth.uid)",
      ".write": "auth.uid === $user && root.child('whitelist').hasChild(auth.uid)",
      "passwords": {
        "$id": {
          ".validate": "newData.child('value').isString() && newData.child('value').val().length > 0"
        }
      },
      "key": {
        ".validate": "newData.isString() && newData.val().length >= 64"
      },
    },
    "whitelist": {
      ".read": false,
      ".write": false
    }
  }
}

With the rules above only users belonging to the "whitelist" will be able to use your application

TODO

  • [x] Whitelist users
  • [ ] Add a rock solid unit test
  • [ ] Improve async UI events with inline loaders and animations
  • [ ] Add import vs export feature via drag and drop
  • [x] PWA enhancements
  • [x] Add favicon