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

@rendobar/n8n-nodes-rendobar

v0.2.0

Published

Rendobar media processing for n8n: submit, track, and cancel video jobs, and trigger on completion.

Readme

@rendobar/n8n-nodes-rendobar

n8n community node for Rendobar, a media processing API. Submit, track, and cancel video jobs from your workflows, and start workflows when jobs finish.

n8n is a fair-code workflow automation platform.

Installation

In n8n, go to Settings > Community Nodes and install @rendobar/n8n-nodes-rendobar. See the n8n community nodes docs for details.

Credentials

You need a Rendobar API key (starts with rb_). Create one in the dashboard. The connection is validated against your account when you save it.

  • API Key — your rb_ key.
  • Base URL — defaults to https://api.rendobar.com. Change it only to target another environment.

Nodes

Rendobar (action)

  • Create Job — submit a job.
    • The Job Type dropdown is loaded live from your account, and the parameter fields are discovered from the API, so new job types appear without updating this node.
    • Each submission sends an idempotency key derived from the n8n execution, so a retried step never creates a duplicate job.
    • Optional Wait for Completion: poll until the job is done and return its result. It blocks the workflow, so it's best for short jobs. For long jobs use the trigger below. Configure the poll interval and a max-wait timeout.
  • Get Job — fetch a job by ID, including its status and result.
    • Optional Download Output File: fetch the headline result file (file.url) into a binary property so the next node can use it directly. Applies only to completed jobs that produced a file.
  • Cancel Job — cancel a job that is still running.
  • Upload File — stream a binary file from a previous node to Rendobar and get back a URL to use as a job input. Files are ephemeral and auto-delete after 24 hours. Pair it with Create Job: upload, then reference the returned downloadUrl in the next node's inputs.

Job result (the same shape for every job type)

When a job completes, Get Job (and Create Job with Wait for Completion) returns the full job. The node also lifts the unified output onto the item so downstream nodes get clean, predictable fields regardless of job type:

  • data — the job-type-specific computed result (a probe report, moderation labels, a transcript, and so on). null for jobs that only produce files.
  • file — the headline result: a single output file or a stream manifest (.m3u8 / .mpd). null for data-only jobs and pure file sets. Each file is { url, path, type, size, meta? }, where type is one of video, image, audio, captions, playlist, data, or other.
  • files — every produced file, the complete list. [] for data-only jobs. Use this for jobs that emit a set or a stream.
  • expiresAt — Unix ms when the file URLs expire, or null when the job produced no files.

The full job (including status, output, cost, and timings) is still available on the same item, so nothing is lost.

Rendobar Trigger

Starts a workflow when a Rendobar event fires. Select the events to listen for (job completed, failed, cancelled, created, started, and balance events). On activation the node registers its webhook URL with Rendobar and removes it on deactivation.

Rendobar must be able to reach the webhook URL over HTTPS. This works on n8n Cloud or a tunnelled / publicly hosted instance. A plain localhost n8n is not reachable from the API — use n8n start --tunnel to test locally.

Compatibility

Tested against n8n's current community-node API (n8nNodesApiVersion: 1).

Resources

License

MIT