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

@pflow-xyz/pflow-xyz

v1.24.0

Published

Dependency-free ES modules for Petri nets: mass-action ODE solver (Tsit5) with an interactive SVG plotter, discrete firing semantics, colored-net unfolding, and the <petri-view> editor web component.

Readme

pflow-xyz

Interactive web component for authoring, visualizing, and simulating Petri nets.

Try It Live

Editor: pflow.xyz | Demos: pilot.pflow.xyz | Code to Flow: pilot.pflow.xyz/code-to-flow | Book: book.pflow.xyz | GraphQL: pilot.pflow.xyz/graphql/i

Demos

Every demo is a full-stack app generated from a Petri net model by petri-pilot.

| Demo | Concepts | Link | |------|----------|------| | Tic-Tac-Toe | Places, transitions, arcs, ODE analysis | Play | | ZK Tic-Tac-Toe | Zero-knowledge proofs with gnark circuits | Play | | Coffee Shop | Capacity limits, weighted arcs, resource flow | Play | | Texas Hold'em | Role-based access, guards, event sourcing | Play | | Knapsack | Optimization via mass-action kinetics | Play | | Predator-Prey | Lotka-Volterra dynamics, continuous simulation | Play | | Dining Philosophers | Deadlock detection, mutual exclusion | Play | | Loan Approval | Multi-stage workflow, conditional branching | Play | | TCP Handshake | Protocol state machines, sequencing | Play | | Thermostat | Feedback loops, threshold-based control | Play | | Producer-Consumer | Buffered channels, synchronization | Play | | Hiring Pipeline | Multi-phase pipeline, resource tracking | Play | | Enzyme Kinetics | Michaelis-Menten, biochemical modeling | Play | | Stoplight | Cyclic state machines, timing constraints | Play |


The pflow Ecosystem

| Project | Purpose | Language | |---------|---------|----------| | pflow-xyz | Visual editor & ODE simulator | JavaScript | | go-pflow | Petri net library, simulation & code generation | Go | | petri-pilot | MCP server + full-stack app generation from models | Go | | book-pflow-xyz | "Petri Nets as a Universal Abstraction" — practitioner's guide | mdBook |

JSON-LD Model ──▶ go-pflow (codegen) ──▶ petri-pilot (serve) ──▶ Running App
      ▲                                                               │
      └──────────── pflow-xyz (visual editor) ◀───────────────────────┘
                    book-pflow-xyz (guide)

Design Philosophy

Arc topology replaces coded formulas. A Petri net's structure — which places connect to which transitions, with what weights — encodes behavior declaratively. A double arc makes a transition fire quadratically with token concentration. Changing a rate constant tunes dynamics without touching logic. The wiring is the program.

This means models stay small enough to visualize and verify, while producing real applications. See Building ZK Poker for a deep dive into how four cooperating Petri nets drive a provably fair poker game — strategy, hand evaluation, chip conservation, and phase control, all from arc topology.


Quick Start

npm

npm i @pflow-xyz/pflow-xyz
import * as Solver from '@pflow-xyz/pflow-xyz';
import '@pflow-xyz/pflow-xyz/petri-view.js';

CDN

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/pflow-xyz/pflow-xyz@latest/public/petri-view.css"/>
<script type="module" src="https://cdn.jsdelivr.net/gh/pflow-xyz/pflow-xyz@latest/public/petri-view.js"></script>

<petri-view id="pv" data-json-editor>
    <script type="application/ld+json">
    {
        "@context": "https://pflow.xyz/schema",
        "@type": "PetriNet",
        "@version": "1.1",
        "arcs": [],
        "places": {},
        "token": ["https://pflow.xyz/tokens/black"],
        "transitions": {}
    }
    </script>
</petri-view>

ODE Solver (Standalone)

import * as Solver from 'https://cdn.jsdelivr.net/gh/pflow-xyz/pflow-xyz@latest/public/petri-solver.js';

const net = Solver.fromJSON(petriNetData);
const prob = new Solver.ODEProblem(net, Solver.setState(net), [0, 10], Solver.setRates(net, { produce: 1.0 }));
const sol = Solver.solve(prob, Solver.Tsit5(), { dt: 0.01 });

Features

Editor — Drag-and-drop places, transitions, arcs. Inhibitor arcs, capacity limits, multi-select, pan & zoom, undo/redo. Light + dark theme (follows prefers-color-scheme).

Analysis workbench (9 or ☰ → Analysis) — Tsit5 adaptive solver with mass-action kinetics, in four tabs: time-series Simulate, Rate Scan (steady state vs one rate), Sweep (overlaid trajectories), and Phase Plot. Interactive plots (crosshair, click-to-toggle legend), numeric results tables, CSV/JSON export, and a "Copy MCP call" button that emits the equivalent petri-pilot tools/call payload.

Ad-hoc pages — every module is served from pflow.xyz with Access-Control-Allow-Origin: *, so a scratch HTML file (or an AI assistant writing one) can import "https://pflow.xyz/petri-solver.js" directly. See pflow.xyz/llms.txt for copy-paste recipes and the model format.

Data — JSON-LD with schema, IPFS CID content addressing, custom events, public API.

Keyboard Shortcuts

| Key | Action | |-----|--------| | 1-6 | Switch modes (select, place, transition, arc, token, delete) | | Space + drag | Pan canvas | | Ctrl/Cmd + Z/Shift+Z | Undo / Redo | | Delete | Delete selected | | 7 | Toggle label edit | | 8 / X | Start/stop simulation | | 9 | Analysis workbench | | Shift + click/drag | Multi-select / bounding box |


AI-Assisted Development (MCP)

petri-pilot provides an MCP server for AI assistants to design models and generate apps. This repo ships a .mcp.json pointing at the hosted server, so Claude Code picks it up automatically (in the terminal and on the web). To add it to other clients:

claude mcp add --transport http petri-pilot https://pilot.pflow.xyz/mcp

| Tool | Description | |------|-------------| | petri_validate | Structural correctness | | petri_simulate | Fire transitions, verify behavior | | petri_analyze | Reachability, deadlocks, liveness | | petri_codegen | Generate Go backend | | petri_frontend | Generate ES modules frontend | | petri_application | Full-stack app from spec |

petri-pilot codegen -o ./myapp -pkg myapp model.json
petri-pilot frontend -o ./myapp/frontend model.json

Events & API

const pv = document.querySelector('petri-view');
pv.addEventListener('transition-fired-success', (e) => console.log('Fired:', e.detail.id));
pv.addEventListener('marking-changed', (e) => console.log('Tokens:', e.detail.marks));

const model = pv.getModel();
pv.setModel(newModel);
pv.importJSON(jsonData);

Links

| Resource | URL | |----------|-----| | Live Editor | pflow.xyz | | Demos | pilot.pflow.xyz | | Code to Flow | pilot.pflow.xyz/code-to-flow | | Book | book.pflow.xyz | | GraphQL | pilot.pflow.xyz/graphql/i | | go-pflow | github.com/pflow-xyz/go-pflow | | petri-pilot | github.com/pflow-xyz/petri-pilot | | CDN | jsdelivr.com/package/gh/pflow-xyz/pflow-xyz | | npm | @pflow-xyz/pflow-xyz | | Schema | pflow.xyz/schema |

License

See LICENSE file for details.