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

pm-gui

v1.4.10

Published

project-manager

Readme

Project Manager

Usage

npx pm-gui # [--port=4000] [--db=path/to/sqlite/db] [--pwd=123456]

open browser and visit http://localhost:4000

Args

port

  • listen port
  • default: 4000

db

  • app local storage
  • default: cwd/config/app.db

pwd

  • app auth password
  • default:

IPC

add project-manager-ipc to project for emit dev info and build dist to pm-gui

import ProjectManagerIpc from "project-manager-ipc";
const ipc = new ProjectManagerIpc();
ipc.connect();

// Run Dev
YourDevScript(() => {
  ipc.emitUrl("0.0.0.0", 1234);
});
// Build Success
YourBuildScript(() => {
  ipc.emitDist("path/to/dist");
  // or
  ipc.emitDist("path/to/dist", { version: "1.0.0", name: "name" }});
});

or use project-manager-webpack-plugin to auto emit dist with webpack

import ProjectManagerWebpackPlugin from "project-manager-webpack-plugin";

const webpackConfig = {
  //...
  plugins: [
    new ProjectManagerWebpackPlugin({
      // send dev host and port
      devInfo: () => ({
        host: "0.0.0.0",
        port: 1234,
      }),
      // outpath will be auto emit
    }),
  ],
};

Demo

image

changelog

[1.4.3] 2024-04-19

  • add deploy post progress

[1.4.2] 2024-01-16

  • deploy post version and extra args

[1.4.1] 2024-01-16

  • add project output version

[1.4.0] 2024-01-15

  • add password auth

[1.3.0] 2023-12-07

  • add project deploy

[1.2.3] 2023-11-28

  • add process resume

[1.2.0] 2023-11-27

  • next project process

[1.1.0] 2023-10-31

  • change usage to process
  • add db backup file

[1.0.8] 2023-05-23

  • add build/dev proc env and encoding

[1.0.7] 2023-05-22

  • When the project is stopped, click on the status label to display the terminal.

[1.0.6] 2023-05-08

  • change project sort
  • add project created_at

[1.0.5] 2023-05-06

  • category orderby sort asc
  • xterm use canvas renderer

[1.0.4] 2023-05-06

  • merge project devInfo request
  • show cpu/memory on homepage

[1.0.3] 2023-05-05

  • update db file save method