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

pf2e-party-tracker

v0.1.0

Published

A GM's Pathfinder 2e party tracker — passive stats, secret checks, exploration activities (single self-contained HTML).

Readme

PF2e Party Tracker

A sleek, offline-first Pathfinder 2e (Remaster) party tracker for GMs — built for exploration mode and passive statistics. Import your players' characters straight from Pathbuilder, then keep the whole party's numbers a glance away: Perception, saves, skills, senses, AC, speed, languages, and the passive DCs (10 + modifier) you need to roll secret checks on their behalf.

Single self-contained dist/index.html — no framework, no build step to use it, nothing sent anywhere. Open it from a file, host it, or install it as an app.

Features

  • Passive stats dashboard — a wide roster table (one row per PC); click a PC to expand full detail (all 16 skills + lores with passive DCs, senses, languages, ability mods, class DC, spellcasting DCs).
  • Secret-check roller — roll d20 + mod for the whole party at once for Perception or any skill/save, sorted, with PF2e degrees of success against an optional DC. Doubles as a party initiative roller.
  • Exploration activity board — assign each PC an exploration activity (Search, Scout, Avoid Notice, Investigate, Track…) and see the governing modifier, with a marching order.
  • Live session tracking — current/temp HP, conditions, hero points, and wounded/dying/doomed, per PC.
  • Rules reference — condition and action text derived from the Foundry pf2e data.

Import from Pathbuilder

In Pathbuilder 2e: Menu → Export → Export JSON. You get a numeric code and a https://pathbuilder2e.com/json.php?id=… link.

  • By code — paste the export id and the tracker fetches it. (Pathbuilder's endpoint may block cross-site fetches in some browsers.)
  • By JSON (always works, offline) — copy the exported JSON and paste it in.

Everything is stored only in your browser (localStorage). Export a PC or the whole party to a portable code for backup or to move it to another device.

Run it

python3 tools/build.py        # assemble dist/index.html
# then either:
open dist/index.html          # straight from the file, fully offline
npx pf2e-party-tracker        # serve at http://localhost:8725 and open the browser

Rebuild the rules reference (optional)

The bundled condition/action text is generated from the open-source Foundry pf2e system data:

git clone --depth 1 --filter=blob:none --sparse https://github.com/foundryvtt/pf2e.git pf2e-data
cd pf2e-data && git sparse-checkout set packs/pf2e/conditions packs/pf2e/actions && cd ..
python3 tools/build_reference.py --src pf2e-data/packs/pf2e --out data/reference.generated.js

Tests

node tools/test.mjs           # jsdom; asserts the Pathbuilder parser against a real fixture

Licensing

Application code is MIT (see LICENSE). Bundled Pathfinder condition and action text is Paizo content under the ORC/OGL licenses — see notice.md. This is an unofficial fan tool, not affiliated with Paizo or with Pathbuilder.