Node Flowdocs

Open-source workflow orchestrators compared

A practical guide to open-source and source-available workflow orchestration engines — Conductor OSS, Temporal, Airflow, Trigger.dev, Hatchet and node-flow — and how to choose.

If you searched for an open-source workflow orchestrator, you probably want three things: to read the code, to self-host it, and not to pay per execution. This page lays out the main options by licence and model, including where node-flow fits — and why it is source available rather than open source.

node-flow's licence, stated up front

node-flow is source available, not OSI open source. You can read the source, run it for any purpose (including commercially and inside products you sell), redistribute it unmodified, and patch your own deployment. You cannot publish a fork or distribute a modified build. Your workflow definitions are yours and untouched by the licence. Details are on the Licence page.

If your organisation requires an OSI-approved licence, pick one of the open-source engines below.

The options

EngineLicenceModelRequired infrastructure
node-flowSource available, free to runJSON DAG, polyglot polling workersPostgreSQL 18
Conductor OSSApache 2.0JSON DAG, polyglot polling workersJVM server plus queue, persistence and index stores
TemporalMITDurable codeTemporal services plus a SQL or Cassandra store
Apache AirflowApache 2.0Python DAGs, scheduledScheduler, metadata DB, executor
Trigger.devApache 2.0TypeScript tasksWebapp, Postgres, Redis, object storage, registry
HatchetMITCode-defined tasks and DAGsEngine plus Postgres
Camunda 7 CommunityApache 2.0 (end of life for community)BPMNJVM plus a SQL database

Licences change — several projects in this space have moved between licences in recent years. Check each project's repository before you commit.

How to choose

  1. Is the workflow code or data? If it lives in one team's service and is genuinely code, look at Temporal, Hatchet or Trigger.dev. If it is a process several teams and an operator need to see and change, look at Conductor OSS or node-flow.
  2. What will you operate? Count the stateful systems. node-flow and Hatchet lean on Postgres; Temporal and Conductor OSS add more.
  3. Which languages? Polling-worker engines work with anything that speaks HTTP; SDK-based engines work with the languages they ship SDKs for.
  4. Batch or per-event? Scheduled data pipelines belong in Airflow. Per-event business processes belong in an orchestrator.

Frequently asked questions

Is node-flow open source?

node-flow is source available, not OSI open source. The full source is public, and you may run it for free for any purpose, including commercially, and redistribute it unmodified. Distributing modified versions or publishing a fork as a separate project is not permitted.

What is the best open-source alternative to Conductor or Temporal?

Conductor OSS (Apache 2.0) keeps the JSON workflow model; Temporal itself is MIT-licensed for code-first durable execution. If you do not need an OSI licence and want Conductor’s model with only Postgres to run, node-flow is free to self-host and run commercially.

Which workflow engines run only on Postgres?

node-flow requires only PostgreSQL 18 for state, queues, timers, the outbox and search. Hatchet is also Postgres-based. Most other orchestrators add Redis, Cassandra, Elasticsearch or a message broker.

Next

On this page