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

commflow

v0.0.2

Published

Framework-agnostic communication orchestration layer for Node.js across request, SSE, RPC, and socket flows with VextJS-first integration.

Readme

commflow

Framework-agnostic communication orchestration for Node.js request, SSE, RPC, and socket flows, designed with VextJS-first integration in mind.

Choose Your Path

The current npm release exposes the manifest API. The user guide documents the complete commflow contract separately so current availability and the full product model are never mixed.

Install

npm install commflow

Current Version Quick Check

The code below verifies the current published package only. It is not the final request / SSE / RPC / socket usage path.

Create quick-start.mjs:

import {
  COMMFLOW_CHANNELS,
  createCommflowManifest
} from 'commflow';

const manifest = createCommflowManifest();

console.log(JSON.stringify({
  channels: COMMFLOW_CHANNELS,
  primaryIntegration: manifest.primaryIntegration,
  plannedReplacement: manifest.plannedReplacement,
  descriptors: manifest.descriptors.map((item) => ({
    name: item.name,
    streaming: item.streaming,
    bidirectional: item.bidirectional
  }))
}, null, 2));

Run it:

node quick-start.mjs

Expected output:

{
  "channels": [
    "request",
    "sse",
    "rpc",
    "socket"
  ],
  "primaryIntegration": "vextjs",
  "plannedReplacement": "vext/app.fetch",
  "descriptors": [
    {
      "name": "request",
      "streaming": false,
      "bidirectional": false
    },
    {
      "name": "sse",
      "streaming": true,
      "bidirectional": false
    },
    {
      "name": "rpc",
      "streaming": true,
      "bidirectional": true
    },
    {
      "name": "socket",
      "streaming": true,
      "bidirectional": true
    }
  ]
}

If you see this output, the package is installed correctly and the released manifest API is working.

Complete User Guide

The guide is split by user task rather than project internals. Current release details live under Current Version 0.0.1; unsettled API sketches live under Design Preview.

Current Status

[email protected] is a published skeleton package. It currently exposes a manifest API that describes the planned communication surface. Runtime clients for request, SSE, RPC, and socket flows are not released yet.

Runtime Boundary

  • Package runtime: Node.js >=20.0.0
  • Documentation site build runtime: Node.js >=20.19.0 || >=22.12.0
  • Current released API: COMMFLOW_CHANNELS, createCommflowManifest(), and related manifest types
  • Complete user contract: request, SSE, RPC, socket, shared configuration, reliability, and VextJS adoption
  • Design preview: unsettled request API sketches that are not production imports

Troubleshooting

  • There is no request client export in [email protected]; this is expected.
  • No runtime configuration is required yet because runtime clients have not shipped.
  • If ESM import fails, use a .mjs file or set "type": "module" in your application package.
  • Package users only need Node.js >=20.0.0.