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

@subscribe.dev/workflow

v1.0.24

Published

Workflow execution package for subscribe.dev

Readme

@subscribe.dev/workflow

Execute workflows with subscribe.dev AI models.

Installation

npm install @subscribe.dev/workflow @subscribe.dev/client

Basic Usage

The workflow package provides functions to execute workflows both from JSON definitions and by workflow ID.

Execute from JSON

import { SubscribeDevClient } from '@subscribe.dev/client';
import { executeWorkflow } from '@subscribe.dev/workflow';

const client = new SubscribeDevClient({
  apiKey: 'your-api-key'
});

const workflowDefinition = {
  name: 'My Workflow',
  nodes: [
    {
      id: 'input-1',
      type: 'textInput',
      data: { prompt: 'A beautiful sunset' }
    },
    {
      id: 'model-1',
      type: 'model',
      data: { model: 'black-forest-labs/flux-schnell', aspectRatio: '16:9' }
    }
  ],
  edges: [
    {
      id: 'e1',
      source: 'input-1',
      target: 'model-1',
      sourceHandle: 'prompt',
      targetHandle: 'prompt'
    }
  ]
};

const result = await executeWorkflow(client, workflowDefinition, {
  onNodeStart: (nodeId) => console.log(`Starting ${nodeId}`),
  onNodeComplete: (nodeId, output) => console.log(`Completed ${nodeId}`, output),
  onNodeError: (nodeId, error) => console.error(`Error in ${nodeId}:`, error)
});

console.log('Workflow outputs:', result.outputs);

Execute by ID

import { executeWorkflowById } from '@subscribe.dev/workflow';

const result = await executeWorkflowById(client, 'workflow-uuid', {
  inputValues: {
    'input-1': 'Custom input text'
  }
});

Override Input Values

You can override input values for public input nodes:

const result = await executeWorkflow(client, workflowDefinition, {
  inputValues: {
    'text-input-node-id': 'Custom prompt text',
    'image-input-node-id': 'data:image/jpeg;base64,...'
  }
});

API Reference

executeWorkflow(client, workflowDefinition, options?)

Execute a workflow from its JSON definition.

  • client: SubscribeDevClient instance
  • workflowDefinition: Workflow JSON with nodes and edges
  • options: Execution options (optional)

executeWorkflowById(client, workflowId, options?)

Execute a workflow by fetching it from the API first.

  • client: SubscribeDevClient instance
  • workflowId: UUID of the workflow to execute
  • options: Execution and fetch options (optional)

fetchWorkflowById(client, workflowId, options?)

Fetch a workflow definition by ID.

Options

interface WorkflowExecutionOptions {
  inputValues?: Record<string, any>;
  onNodeStart?: (nodeId: string) => void;
  onNodeComplete?: (nodeId: string, result: any) => void;
  onNodeError?: (nodeId: string, error: Error) => void;
  onNodeUpdate?: (nodeId: string, update: NodeUpdate) => void;
}

Supported Models

The package supports all subscribe.dev AI models including:

  • Image Generation: Flux Schnell, Nano Banana, etc.
  • Video Generation: WAN, Seedance Lite/Pro, etc.
  • Language Models: GPT-4o, Claude 3.5 Sonnet, Gemini 1.5 Flash, etc.
  • Voice Models: ElevenLabs TTS
  • Special Models: Lipsync for video + audio synchronization

Node Types

  • textInput: Text input nodes
  • imageInput: Image input nodes
  • model: AI model nodes that process inputs and generate outputs

The execution engine handles proper data flow between nodes, including:

  • Text → Model prompts
  • Images → Model inputs
  • Model outputs → Next model inputs
  • Multiple outputs and parallel execution

Error Handling

Execution continues even if individual nodes fail. Check the result for errors:

const result = await executeWorkflow(client, workflowDefinition);
if (result.errors) {
  console.error('Workflow had errors:', result.errors);
}