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

nopalm

v1.0.11

Published

One stop graphical solution to create and manage your local Node.Js projects end to end.

Readme

Manage your node projects from user interface Downloads Install size

RATIONALE

  • Having trouble in creating and managing multiple Node.Js projects during local development? Prefer using user interfaces over CLIs for larger project management?
  • Nopalm 🔥 is a one stop graphical solution to create and manage your local Node.Js projects end to end.
  • With nopalm you can create/scaffold any kind of new project using various pre-defined choices, manage existing node project and its package dependencies efficiently.
  • Why the name? Node Project Manager sounded very close to Nopalm (also sounding similar to Napalm). Hence the name (and the branding)!
  • This project is heavily inspired from Vue-UI and NPM-GUI and "tries" to improve on these projects.
  • Desired Future? Premium cloud and gen-AI features.

This project was bootstrapped with Create React App

USAGE

  • Install the npm package globally and run the it inside any node project directory / empty directory
     npm i -g nopalm
     cd /path/to/target_dir
     nopalm
  • Alternatively, use npx. In an empty or node project directory, run
    npx nopalm
  • Visit http://localhost:8001 to start managing your node project like a pro

To run / develop locally

Pre installed requirements

  • node >= 20
  • npm or yarn

Steps

  • Clone the repository
  • Install packages in client and server
    npm i
    
    cd client/
    npm i

To run the development version

  • Run the react client
    cd client
    npm run dev
  • Run the server in an existing node project directly without a script
    cd /path/to/target_node_project
    nodemon /path/to/nopalm
  • Alternatively, alias the nopalm server and run
    echo 'alias lnopalm="node /path/to/nopalm_project"' >> ~/.zshrc
    cd /path/to/target_node_project && lnopalm
  • Visit https://localhost:3000 To run the production version
  • Build the UI and run the server alone
    cd client/
    
    <!-- Build the React client -->
    npm run build
    
    <!-- cd to target node project -->
    cd /path/to/target_node_project
      
    nodemon /path/to/nopalm
  • Visit https://localhost:8001
  • Follow the same steps for testing in empty directory

Testing APIs

Once you run the node server you might find this interesting to test it using Postman

Contributing Guidelines