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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@zeroedin-react/zi-common

v1.9.4

Published

repo for common zi utility functions & components

Readme

steps to add new component and publish new version for npm package:

  1. clone the new zi-common repo above (note the old one is called 'zi-common-ui' we are not using that anymore)
  2. After clone open terminal window in the zi-common folder and run 'npm install'
  3. Open the zi-common folder in vs code and open the src/components folder
  4. Add your new component that you want to be a common re-usable in the components folder (add .tsx file)
  5. Now in the same terminal run 'npm run build' this builds the code to the lib (dist) folder (this is important)

steps to publish zi-common npm package with new version:

  1. make sure the above steps have been completed first otherwise the new version wont reflect your changes
  2. open a terminal window in the zi-common folder
  3. in terminal type 'npm login'
  4. when prompted for username enter 'zeroedin-react'
  5. when prompted for password enter the password
  6. next it will prompt you for an email address (use any email, preferably your work email) OR it will send an email to gareth (how this works is NPM uses 2FA for their logins so they send an OTP to the email you provided) NOTE: it takes roughly 5 mins for the OTP to come through in email
  7. enter the OTP code that was sent to your email in the terminal window when prompted for it Should display a message to indicate you are logged in
  8. IMPORTANT: now you need to go into the zi-common/package.json file and increment the app minor version by one ie. 1.0.0. -> 1.1.0 (if you do not do this the publishing of the npm package will fail)
  9. After updating package version and saving finally, open the terminal window you had earlier from login and type 'npm publish' after a few seconds should display that new version was published. Then all you need todo is go back to zi-ui or wherever you want to use the component and run 'npm update @zeroedin-react/zi-common' and it will pull in the latest version of the package we published
  10. Remember to commit your updated changes to zi-common repo after succesful publish

To import the package in your app you will go: import NameOfComponent from '@zeroedin-react/zi-common/lib/NameOfComponent';