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

@interactem/interactem

v0.0.12

Published

The frontend is built with [Vite](https://vitejs.dev/), [React](https://reactjs.org/), [TypeScript](https://www.typescriptlang.org/), and [TanStack Query](https://tanstack.com/query).

Readme

InteractEM - Frontend

The frontend is built with Vite, React, TypeScript, and TanStack Query.

Publishing

We use vite to build the library.

  • Login to npm with an account inside @interactem:
npm login
  • Build library with vite:
vite build 
  • Patch the version:
npm version patch
  • Biome:
npx biome check \
    --formatter-enabled=true \
    --linter-enabled=true \
    --organize-imports-enabled=true \
    --write \
    .
  • Publish:
npm publish --access public

[!NOTE]
We use peerDependencies. In client applications, it is better to use npm to install dependencies, rather than yarn. At least for yarn v1, peerDependencies are not installed automatically.

Development

Before you begin, ensure that you have either the Node Version Manager (nvm) or Fast Node Manager (fnm) installed on your system.

  • To install fnm follow the official fnm guide. If you prefer nvm, you can install it using the official nvm guide.

  • After installing either nvm or fnm, proceed to the frontend directory:

cd frontend
  • If the Node.js version specified in the .nvmrc file isn't installed on your system, you can install it using the appropriate command:
# If using fnm
fnm install

# If using nvm
nvm install
  • Once the installation is complete, switch to the installed version:
# If using fnm
fnm use

# If using nvm
nvm use
  • Within the frontend directory, install the necessary NPM packages:
npm install
  • And start the live server with the following npm script:
npm run dev

Notice that this live server is not running inside Docker, it's for local development, and that is the recommended workflow. Once you are happy with your frontend, you can build the frontend Docker image and start it, to test it in a production-like environment. But building the image at every change will not be as productive as running the local development server with live reload.

Check the file package.json to see other available options.

Generate Client

From the top level project directory, run the script:

./scripts/generate-frontend-client.sh

This will update the openapi.json, and results can be found in src/client/generated.