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

wayflow

v0.3.0

Published

An embeddable visual workflow editor for the web. Powered by AI when you want it, plain logic when you don't.

Readme

Wayflow

The visual workflow editor you embed, not rebuild.

npm  license  types

Wayflow drops a complete workflow editor into your product. From a single call you get the canvas, the node palette, the config panel, and the run controls — and Wayflow runs the workflows your users build, in the browser or on your server. Powered by AI when you want it, plain logic when you don't.

It's plain TypeScript and the DOM, with no UI framework — so it works the same in React, Vue, Svelte, or no framework at all.

Install

npm install wayflow

Quick start

Point createWorkflowEditor at a container, and that one call mounts the whole editor:

import { createWorkflowEditor } from 'wayflow'

const editor = createWorkflowEditor(document.getElementById('editor'))

That's the editor on screen. To execute a graph, hand it a runtime — the Quickstart walks you from install to a running workflow in a few minutes.

Why Wayflow

  • The whole editor, one call — canvas, node palette, config panel, and run controls. A complete workspace, not a blank canvas you finish yourself.
  • It runs your workflows — a real execution engine ships in the box. Prototype in the browser with no backend, then run the same graph on your server.
  • AI when you want it, logic when you don't — built-in LLM, tool-calling, branching, and map-over-list nodes mix freely with your own deterministic steps.
  • Pause for a human, resume later — suspend a run for an approval or a decision, then pick it right back up. Human-in-the-loop is built in.
  • Bring your own models — provider-neutral LLM and image adapters. Your keys, your vendor — never locked to one.
  • Brand it from one token — set the accent and every surface, hover, and focus ring recomputes. Light and dark stay in sync.

Ships with full TypeScript types, zero runtime dependencies, and a tree-shakeable package.

Works with any framework

Wayflow is plain TypeScript and the DOM, so it mounts inside React, Vue, Svelte — or no framework at all — with a single call. No wrappers, no adapters.

Documentation

Full docs live at wayflow.build.

Examples

The examples/ folder has focused, runnable apps — a quickstart, custom nodes, a low-level setup, preview mode, and an editor wired to a backend.

Contributing

Contributions are welcome — see CONTRIBUTING.md.

License

MIT © Taha Shashtari