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

@jfstudios26/lpm-assistant

v1.0.0

Published

Standalone process manager with an authenticated REST + WebSocket API for the LPM Assistant iOS app. Spawns, supervises, and auto-restarts processes — no PM2 required.

Readme

lpm-assistant

Standalone process manager + companion agent for the LPM Assistant iOS app. Spawns and supervises your processes directly (no PM2 needed), with crash-loop autorestart, cpu/mem metrics, and log capture, and exposes an authenticated REST + WebSocket API so the app can view status, stream logs, and start/stop/ restart/delete processes. Can import an existing PM2 setup.

Install

npm install -g @jfstudios26/lpm-assistant

Installs two commands: lpm-assistant (runs the agent daemon + prints a pairing QR) and lpm (a PM2-style CLI: lpm list, lpm logs, lpm start, lpm diagnose…).

Run

Keep it alive as a boot-persistent service. Recommended: systemd — it auto-starts on reboot, restarts on crash, and stays out of your PM2 list. A ready-made unit is in deploy/lpm-assistant.service:

which lpm-assistant                     # note the path
sudo cp deploy/lpm-assistant.service /etc/systemd/system/
sudo nano /etc/systemd/system/lpm-assistant.service   # set User= and ExecStart=
sudo systemctl daemon-reload
sudo systemctl enable --now lpm-assistant
lpm-assistant --show-pairing            # print the QR to pair

On first run it prints a QR code on every startup. Scan it in LPM Assistant to pair, or run lpm-assistant --show-pairing to display it again.

Security

  • A random bearer token is generated on first run and stored at ~/.lpm-assistant/config.json (mode 0600). Rotate it with lpm-assistant --rotate-token.
  • TLS is required for the iOS app (App Transport Security blocks plain HTTP). Front the agent with a reverse proxy such as Caddy for automatic HTTPS. See the project's docs/DEPLOYMENT.md.

Requirements

Node.js 18+. PM2 is not required — it's only used if you run --import-pm2 / --cutover to migrate an existing PM2 setup.

Licence

Copyright © JF Studios. Licensed under the GNU AGPL-3.0-or-later — see LICENSE. You may run this software, but any modified version you distribute or run as a network service must publish its source under the same licence.