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

@f8synapse/nodes-core

v0.1.1

Published

Built-in workflow node library — HTTP, logic, data transform, code execution, and integration nodes.

Readme

@f8synapse/nodes-core

Built-in workflow node library — HTTP, logic, data transform, code execution, and integration nodes.

Installation

npm install @f8synapse/nodes-core
# or
pnpm add @f8synapse/nodes-core

Usage

import { createWorkflowEngine, NodeRegistry } from '@f8synapse/engine';
import { createConfiguredNodeRegistry } from '@f8synapse/nodes-core';

// Get a registry pre-loaded with all core nodes
const registry = createConfiguredNodeRegistry();

const engine = createWorkflowEngine({ nodeRegistry: registry });

const execution = await engine.executeWorkflow({
  id: 'wf-001',
  name: 'HTTP + Transform',
  nodes: [
    { id: 'n1', type: 'http_request', config: { url: 'https://api.example.com/users' } },
    { id: 'n2', type: 'data_transform', config: { expression: 'data.users.map(u => u.name)' } },
    { id: 'n3', type: 'end', config: {} },
  ],
  edges: [
    { from: 'n1', to: 'n2' },
    { from: 'n2', to: 'n3' },
  ],
});

API

Functions

| Export | Description | | ------------------------------ | ------------------------------------------------------------ | | createConfiguredNodeRegistry | Creates a NodeRegistry pre-loaded with all core node types |

Node Classes (selective imports)

| Node Class | Type Key | Description | | -------------------- | ----------------- | ----------------------------------------------------------------- | | HttpRequestNode | http_request | Makes HTTP/HTTPS requests with configurable method, headers, body | | DataTransformNode | data_transform | Transforms data using JavaScript expressions | | ConditionalNode | conditional | Branches execution based on boolean conditions | | LoopNode | loop | Iterates over arrays or until condition met | | SwitchNode | switch | Routes to one of N branches based on a value | | ParallelNode | parallel | Executes multiple branches concurrently | | TextProcessNode | text_process | String manipulation (trim, split, join, replace) | | TemplateRenderNode | template_render | Renders Handlebars/Mustache templates | | WaitNode | wait | Pauses execution for a specified duration | | AssertNode | assert | Asserts a condition, failing the workflow if false | | SetNode | set | Sets variables in the execution context | | LogNode | log | Emits a log message during execution | | EndNode | end | Terminates workflow execution | | CodeNode | code | Executes arbitrary JavaScript in an isolated VM | | SubworkflowNode | subworkflow | Invokes another workflow as a child execution | | QueuePublishNode | queue_publish | Publishes a message to a queue (Redis/etc.) | | QueueConsumeNode | queue_consume | Consumes a message from a queue |

License

MIT