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

@pulze-io/renderflow

v1.2.7

Published

Official RenderFlow API client for TypeScript/JavaScript

Downloads

126

Readme

@pulze-io/renderflow

Official TypeScript/JavaScript client for the RenderFlow API.

Installation

npm install @pulze-io/renderflow

Quick Start

import { RenderFlow } from "@pulze-io/renderflow";

const rf = new RenderFlow({
    apiKey: process.env.RENDERFLOW_API_KEY
});

const jobs = await rf.jobs.list();
console.log(`Found ${jobs.length} jobs`);

Submitting a Job

const job = await rf.jobs.create({
    name: "Exterior Shot",
    file: "C:/projects/scene.max",
    type: "3dsmax.render",
    host: { id: "3dsmax", name: "3ds Max", version: "2026" },
    engine: { id: "vray", name: "V-Ray", version: "7.20.04" },
    frame: "1-100",
    resolution: "1920x1080",
    priority: 75,
    status: "pending"
});

await rf.jobs.start(job.id);

Managing Jobs

// Get a specific job
const job = await rf.jobs.get("job_id");

// Update job settings
await rf.jobs.update("job_id", {
    priority: 100,
    limit: 5,
    max_batch_size: 10
});

// Control jobs
await rf.jobs.stop("job_id");
await rf.jobs.reset("job_id");
await rf.jobs.archive("job_id");
await rf.jobs.delete("job_id");

Tasks

// List tasks for a job (paginated)
const tasks = await rf.tasks.list("job_id", 1, 50);

// Get a specific task
const task = await rf.tasks.get("task_id");

// Get task logs
const logs = await rf.tasks.logs("task_id", 0, 500);

// Get task thumbnail
const thumbnail = await rf.tasks.thumbnail("task_id");

Nodes

// List all nodes
const nodes = await rf.nodes.list();

// Get node details
const node = await rf.nodes.get("node_id");

// Update node status
await rf.nodes.updateStatus("node_id", "suspended");

// Assign to a pool
await rf.nodes.updatePool("node_id", "pool_id");

// Get node utilization
const util = await rf.nodes.utilization("node_id");

// Get benchmark rankings
const benchmarks = await rf.nodes.benchmarks("vray");

Pools

const pools = await rf.pools.list();
const pool = await rf.pools.get("pool_id");

Users

const users = await rf.users.list();
const user = await rf.users.get("user_id");

Errors

const errors = await rf.errors.list();
const jobErrors = await rf.errors.byJob("job_id");
const nodeErrors = await rf.errors.byNode("node_id");

Real-time Events

Subscribe to live updates using Server-Sent Events:

// Listen to all job changes
const listener = rf.jobs.on((event) => {
    console.log(event.type);      // "insert" | "update" | "delete" | "replace"
    console.log(event.document);  // full job document
    console.log(event.updated);   // changed fields (on update)
    console.log(event.time);      // event timestamp
});

// Listen to task events for a specific job
const taskListener = rf.tasks.on("job_id", (event) => {
    console.log(`Task ${event.document._id}: ${event.document.status}`);
});

// Listen to node events
const nodeListener = rf.nodes.on((event) => {
    console.log(`Node ${event.document.name}: ${event.document.status}`);
});

// Error handling
const listener = rf.jobs.on(
    (event) => console.log(event),
    (error) => console.error("Connection error:", error)
);

// Stop listening
listener.close();

Service Info

const info = await rf.info.get();
console.log(`RenderFlow ${info.version} (${info.node_type})`);