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

@deltaroboticsinc/protoboard

v0.1.0

Published

Register the .protoboard file type with its logo and a double-click handler across Windows, macOS, and Linux.

Readme

protoboard-desktop

Downloadable, self-hostable build of Protoboard for desktop or sandbox use.

Until the full desktop build lands, this repo ships @deltaroboticsinc/protoboard — a one-command installer that registers the .protoboard file type with its logo and a double-click handler on Windows, macOS, and Linux.

Quickstart

npx @deltaroboticsinc/protoboard install

That's it. Save a .protoboard file anywhere (Desktop, Downloads, wherever) and it will show the Protoboard mark. Double-clicking opens the board in your default browser at https://alpha.protoboard.xyz/open?boardId=....

To remove:

npx @deltaroboticsinc/protoboard uninstall

No admin/root required. All registration is per-user.

How it works

  • Windows — writes per-user keys under HKCU:\Software\Classes; copies ProtoboardFile.ico and a launcher Open-Protoboard.ps1 into %LOCALAPPDATA%\Protoboard\. Double-click runs the launcher, which reads board.metadata.id from the JSON and opens the browser.
  • macOS — installs a tiny Protoboard.app bundle into ~/Applications/ declaring the xyz.protoboard.file UTI; iconutil assembles .icns from the bundled PNGs; LaunchServices picks it up via lsregister. If duti is installed, also sets as the default handler.
  • Linux — installs an XDG MIME definition, a .desktop entry, and mimetype icons via xdg-icon-resource. xdg-mime default makes it the default handler.

The .protoboard format itself doesn't change — it's still plain JSON with a custom extension.

For maintainers

pnpm install
pnpm run generate-icons         # rebuilds .ico + PNGs from assets/PB Logo N-200.svg

Generated icons (assets/ProtoboardFile.ico, assets/icons/*.png) are checked into the repo so install-time has no native build step. .icns is assembled on the user's mac at install time via Apple's iconutil, so it doesn't need to be checked in.

Publishing

Tag a version and push:

git tag v0.1.0 && git push origin v0.1.0

The Publish to npm workflow uses the repo's NPM_TOKEN secret to publish to @deltaroboticsinc/protoboard on npmjs.com. First-time setup:

  1. NPM org deltaroboticsinc already exists.
  2. Generate an automation token at npmjs.com and add it as NPM_TOKEN in this repo's GitHub secrets.

Repo layout

assets/                   # SVG source + generated icons (committed)
installers/
  windows/                # install.ps1, uninstall.ps1, Open-Protoboard.ps1
  macos/                  # install.sh, uninstall.sh, Protoboard.app/
  linux/                  # install.sh, uninstall.sh, .xml, .desktop, launcher
scripts/generate-icons.mjs
cli.js                    # the published bin: detects OS and dispatches

Troubleshooting

  • Windows: icon doesn't update in Explorer. Sign out/in, or run ie4uinit.exe -show. The installer triggers SHChangeNotify but Explorer occasionally caches aggressively.
  • macOS: Finder still shows the JSON icon. Right-click any .protoboard file → Get Info → Open with → Protoboard → Change All. Or install duti (brew install duti) and re-run the installer.
  • Linux: handler doesn't open. Confirm ~/.local/bin is on PATH, or check xdg-mime query default application/x-protoboard+json returns protoboard-open.desktop.