diff --git a/integration-tests/cli/test/project.test.ts b/integration-tests/cli/test/project.test.ts index 574d0e33c..ad9302ea4 100644 --- a/integration-tests/cli/test/project.test.ts +++ b/integration-tests/cli/test/project.test.ts @@ -152,12 +152,14 @@ test.serial('merge a project', async (t) => { 'utf8' ).then((str) => str.trim()); - // assert the intial step code + // assert the initial step code const initial = await readStep(); t.is(initial, '// TODO'); // Run the merge - await run(`openfn merge hello-world-staging -p ${projectsPath}`); + const { stdout } = await run( + `openfn merge hello-world-staging -p ${projectsPath} --force` + ); // Check the step is updated const merged = await readStep(); diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index e4c7a0cf2..c9487f186 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,29 @@ # @openfn/cli +## 1.18.0 + +### Minor Changes + +- 16da2ef: Warn when merging two projects might result in lost work + +### Patch Changes + +- Updated dependencies [16da2ef] +- Updated dependencies [16da2ef] + - @openfn/project@0.7.0 + +## 1.17.2 + +### Patch Changes + +- edfc759: Update Project dependency +- 6a68759: Respect openfn.yaml options in pull --beta +- f4209dd: Warn when merging projects which may have diverged +- Updated dependencies [f955548] +- Updated dependencies [edfc759] +- Updated dependencies [329d29d] + - @openfn/project@0.6.1 + ## 1.17.1 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 5ed7e9b96..b8d1793b3 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@openfn/cli", - "version": "1.17.1", + "version": "1.18.0", "description": "CLI devtools for the OpenFn toolchain", "engines": { "node": ">=18", diff --git a/packages/cli/src/checkout/handler.ts b/packages/cli/src/checkout/handler.ts index 1ae8cf855..746801354 100644 --- a/packages/cli/src/checkout/handler.ts +++ b/packages/cli/src/checkout/handler.ts @@ -15,7 +15,7 @@ const checkoutHandler = async (options: CheckoutOptions, logger: Logger) => { // get the config // TODO: try to retain the endpoint for the projects - const { project: _, ...config } = workspace.getConfig() ?? {}; + const { project: _, ...config } = workspace.getConfig() as any; // get the project let switchProject; diff --git a/packages/cli/src/merge/command.ts b/packages/cli/src/merge/command.ts index f61db6750..a07447e1d 100644 --- a/packages/cli/src/merge/command.ts +++ b/packages/cli/src/merge/command.ts @@ -1,6 +1,6 @@ import yargs from 'yargs'; import { Opts } from '../options'; -import { ensure, build } from '../util/command-builders'; +import { ensure, build, override } from '../util/command-builders'; import * as o from '../options'; export type MergeOptions = Required< @@ -12,6 +12,7 @@ export type MergeOptions = Required< | 'removeUnmapped' | 'workflowMappings' | 'log' + | 'force' > >; @@ -21,6 +22,9 @@ const options = [ o.removeUnmapped, o.workflowMappings, o.log, + override(o.force, { + description: 'Force a merge even when workflows are incompatible', + }), ]; const mergeCommand: yargs.CommandModule = { diff --git a/packages/cli/src/merge/handler.ts b/packages/cli/src/merge/handler.ts index eed5f527e..80c8b8d06 100644 --- a/packages/cli/src/merge/handler.ts +++ b/packages/cli/src/merge/handler.ts @@ -51,10 +51,10 @@ const mergeHandler = async (options: MergeOptions, logger: Logger) => { return; } - // TODO pick options from the terminal const final = Project.merge(sourceProject, targetProject, { removeUnmapped: options.removeUnmapped, workflowMappings: options.workflowMappings, + force: options.force, }); const yaml = final.serialize('state', { format: 'yaml' }); await fs.writeFile(finalPath, yaml); @@ -65,6 +65,7 @@ const mergeHandler = async (options: MergeOptions, logger: Logger) => { command: 'checkout', projectPath: commandPath, projectName: final.name || '', + log: options.log, }, logger ); diff --git a/packages/cli/src/pull/beta.ts b/packages/cli/src/pull/beta.ts index bc63df2a1..63df6c977 100644 --- a/packages/cli/src/pull/beta.ts +++ b/packages/cli/src/pull/beta.ts @@ -3,7 +3,7 @@ import { confirm } from '@inquirer/prompts'; import path from 'path'; import fs from 'node:fs/promises'; import { DeployConfig, getProject } from '@openfn/deploy'; -import Project from '@openfn/project'; +import Project, { Workspace } from '@openfn/project'; import type { Logger } from '../util/logger'; import { rimraf } from 'rimraf'; import { Opts } from '../options'; @@ -37,39 +37,44 @@ export type PullOptionsBeta = Required< export async function handler(options: PullOptionsBeta, logger: Logger) { const { OPENFN_API_KEY, OPENFN_ENDPOINT } = process.env; - const config: Partial = { + const cfg: Partial = { apiKey: options.apiKey, endpoint: options.endpoint, }; if (!options.apiKey && OPENFN_API_KEY) { logger.info('Using OPENFN_API_KEY environment variable'); - config.apiKey = OPENFN_API_KEY; + cfg.apiKey = OPENFN_API_KEY; } if (!options.endpoint && OPENFN_ENDPOINT) { logger.info('Using OPENFN_ENDPOINT environment variable'); - config.endpoint = OPENFN_ENDPOINT; + cfg.endpoint = OPENFN_ENDPOINT; } + // TODO `path` or `output` ? + // I don't think I want to model this as output. deploy is really + // designed to run from the working folder + // could be projectPath or repoPath too + const outputRoot = path.resolve(options.path || '.'); + + // TODO is outputRoot the right dir for this? + const workspace = new Workspace(outputRoot); + const config = workspace.getConfig(); + // download the state.json from lightning - const { data } = await getProject(config as DeployConfig, options.projectId); + const { data } = await getProject(cfg as DeployConfig, options.projectId); // TODO if the user doesn't specify an env name, prompt for one const name = options.env || 'project'; const project = Project.from('state', data, { - endpoint: config.endpoint, + config, + endpoint: cfg.endpoint, env: name, fetched_at: new Date().toISOString(), }); - // TODO `path` or `output` ? - // I don't think I want to model this as output. deploy is really - // designed to run from the working folder - // could be projectPath or repoPath too - const outputRoot = path.resolve(options.path || '.'); - const projectFileName = project.getIdentifier(); await fs.mkdir(`${outputRoot}/.projects`, { recursive: true }); @@ -77,7 +82,7 @@ export async function handler(options: PullOptionsBeta, logger: Logger) { const workflowsRoot = path.resolve( outputRoot, - project.repo?.workflowRoot ?? 'workflows' + project.config.dirs.workflows ?? 'workflows' ); // Prompt before deleting // TODO this is actually the wrong path @@ -96,7 +101,8 @@ export async function handler(options: PullOptionsBeta, logger: Logger) { await rimraf(workflowsRoot); const state = project?.serialize('state'); - if (project.repo?.formats.project === 'yaml') { + + if (project.config.formats.project === 'yaml') { await fs.writeFile(`${stateOutputPath}.yaml`, state); } else { await fs.writeFile( diff --git a/packages/cli/test/checkout/handler.test.ts b/packages/cli/test/checkout/handler.test.ts index cb5c4b61f..ecfde24af 100644 --- a/packages/cli/test/checkout/handler.test.ts +++ b/packages/cli/test/checkout/handler.test.ts @@ -164,7 +164,7 @@ test.serial('checkout: invalid project id', (t) => { test.serial('checkout: to a different valid project', async (t) => { // before checkout. some-project-name is active and expanded const bcheckout = new Workspace('/ws'); - t.is(bcheckout.getConfig()?.name, 'some-project-name'); + t.is(bcheckout.projectMeta.name, 'some-project-name'); t.is(bcheckout.getActiveProject()?.name, 'some-project-name'); await checkoutHandler( @@ -176,7 +176,7 @@ test.serial('checkout: to a different valid project', async (t) => { // after checkout. main-project-id is active and expanded const acheckout = new Workspace('/ws'); - t.is(acheckout.getConfig()?.name, 'main-project-id'); + t.is(acheckout.projectMeta.name, 'main-project-id'); t.is(acheckout.getActiveProject()?.name, 'main-project-id'); // check if files where well expanded @@ -189,11 +189,15 @@ test.serial('checkout: to a different valid project', async (t) => { test.serial('checkout: same id as active', async (t) => { // before checkout. some-project-name is active and expanded const bcheckout = new Workspace('/ws'); - t.is(bcheckout.getConfig()?.name, 'some-project-name'); + t.is(bcheckout.projectMeta.name, 'some-project-name'); t.is(bcheckout.getActiveProject()?.name, 'some-project-name'); await checkoutHandler( - { command: 'checkout', projectName: 'some-project-name', projectPath: '/ws' }, + { + command: 'checkout', + projectName: 'some-project-name', + projectPath: '/ws', + }, logger ); const { message } = logger._parse(logger._last); @@ -201,7 +205,7 @@ test.serial('checkout: same id as active', async (t) => { // after checkout. main-project-id is active and expanded const acheckout = new Workspace('/ws'); - t.is(acheckout.getConfig()?.name, 'some-project-name'); + t.is(acheckout.projectMeta.name, 'some-project-name'); t.is(acheckout.getActiveProject()?.name, 'some-project-name'); // check if files where well expanded @@ -214,7 +218,7 @@ test.serial('checkout: same id as active', async (t) => { test.serial('checkout: switching to and back between projects', async (t) => { // before checkout. some-project-name is active and expanded const bcheckout = new Workspace('/ws'); - t.is(bcheckout.getConfig()?.name, 'some-project-name'); + t.is(bcheckout.projectMeta.name, 'some-project-name'); t.is(bcheckout.getActiveProject()?.name, 'some-project-name'); // 1. switch from some-project-name to main-project-id @@ -227,7 +231,7 @@ test.serial('checkout: switching to and back between projects', async (t) => { // after checkout. main-project-id is active and expanded const acheckout = new Workspace('/ws'); - t.is(acheckout.getConfig()?.name, 'main-project-id'); + t.is(acheckout.projectMeta.name, 'main-project-id'); t.is(acheckout.getActiveProject()?.name, 'main-project-id'); // check if files where well expanded @@ -238,7 +242,11 @@ test.serial('checkout: switching to and back between projects', async (t) => { // 2. switch back from main-project-id to some-project-name await checkoutHandler( - { command: 'checkout', projectName: 'some-project-name', projectPath: '/ws' }, + { + command: 'checkout', + projectName: 'some-project-name', + projectPath: '/ws', + }, logger ); const { message: lastMsg } = logger._parse(logger._last); @@ -246,7 +254,7 @@ test.serial('checkout: switching to and back between projects', async (t) => { // after checkout. main-project-id is active and expanded const fcheckout = new Workspace('/ws'); - t.is(fcheckout.getConfig()?.name, 'some-project-name'); + t.is(fcheckout.projectMeta.name, 'some-project-name'); t.is(fcheckout.getActiveProject()?.name, 'some-project-name'); // check if files where well expanded diff --git a/packages/cli/test/merge/handler.test.ts b/packages/cli/test/merge/handler.test.ts index 21d96b258..fe9a183b6 100644 --- a/packages/cli/test/merge/handler.test.ts +++ b/packages/cli/test/merge/handler.test.ts @@ -113,7 +113,7 @@ test('merging into the same project', async (t) => { test('merging a different project into checked-out', async (t) => { // state of main projects workflow before sandbox is merged in const bworkspace = new Workspace('/ws'); - t.is(bworkspace.getConfig()?.name, 'main-project-id'); + t.is(bworkspace.projectMeta.name, 'main-project-id'); t.is(bworkspace.getActiveProject()?.name, 'main-project-id'); const bprojects = bworkspace.list(); t.is(bprojects[0].workflows[0].steps.length, 2); @@ -133,13 +133,13 @@ test('merging a different project into checked-out', async (t) => { // state of main projects workflow before sandbox is merged in const workspace = new Workspace('/ws'); - t.is(workspace.getConfig()?.name, 'main-project-id'); + t.is(workspace.projectMeta.name, 'main-project-id'); t.is(workspace.getActiveProject()?.name, 'main-project-id'); const projects = workspace.list(); t.is(projects[0].workflows[0].steps.length, 3); t.is(projects[0].workflows[0].steps[1].name, 'Job X'); t.is(projects[0].workflows[0].steps[1].openfn?.uuid, 'job-a'); // id got retained - t.is(projects[0].workflows[0].steps[2].name, 'Job Y'); + t.is(projects[0].workflows[0].steps[2].name, 'Job Y'); t.is(projects[0].workflows[0].steps[2].openfn?.uuid, 'job-y'); // id not retained - new nod const { message, level } = logger._parse(logger._last); diff --git a/packages/engine-multi/CHANGELOG.md b/packages/engine-multi/CHANGELOG.md index df0241431..03259265d 100644 --- a/packages/engine-multi/CHANGELOG.md +++ b/packages/engine-multi/CHANGELOG.md @@ -1,5 +1,11 @@ # engine-multi +## 1.7.1 + +### Patch Changes + +- b61bf9b: Fix an issue where memory may not be released after runs + ## 1.7.0 ### Minor Changes diff --git a/packages/engine-multi/ava b/packages/engine-multi/memtest.js similarity index 100% rename from packages/engine-multi/ava rename to packages/engine-multi/memtest.js diff --git a/packages/engine-multi/package.json b/packages/engine-multi/package.json index 4dca2554d..7d6f22c1d 100644 --- a/packages/engine-multi/package.json +++ b/packages/engine-multi/package.json @@ -1,6 +1,6 @@ { "name": "@openfn/engine-multi", - "version": "1.7.0", + "version": "1.7.1", "description": "Multi-process runtime engine", "main": "dist/index.js", "type": "module", diff --git a/packages/engine-multi/src/api/lifecycle.ts b/packages/engine-multi/src/api/lifecycle.ts index c005753c3..3de02cfcd 100644 --- a/packages/engine-multi/src/api/lifecycle.ts +++ b/packages/engine-multi/src/api/lifecycle.ts @@ -52,23 +52,9 @@ export const workflowComplete = ( const { workflowId, state: result, threadId } = event; logger.success('complete workflow ', workflowId); - //logger.info(event.state); - - // TODO I don't know how we'd get here in this architecture - // if (!allWorkflows.has(workflowId)) { - // throw new Error(`Workflow with id ${workflowId} is not defined`); - // } - state.status = 'done'; state.duration = Date.now() - state.startTime!; - // Important! We do NOT write the result back to this state object - // It has a tendency to not get garbage collected and causing memory problems - - // TODO do we have to remove this from the active workflows array? - // const idx = activeWorkflows.findIndex((id) => id === workflowId); - // activeWorkflows.splice(idx, 1); - // forward the event on to any external listeners context.emit(externalEvents.WORKFLOW_COMPLETE, { threadId, diff --git a/packages/engine-multi/src/engine.ts b/packages/engine-multi/src/engine.ts index bb1884925..ce7109228 100644 --- a/packages/engine-multi/src/engine.ts +++ b/packages/engine-multi/src/engine.ts @@ -23,7 +23,6 @@ import type { EventHandler, ExecuteOptions, RuntimeEngine, - WorkflowState, } from './types'; import type { AutoinstallOptions } from './api/autoinstall'; @@ -100,7 +99,6 @@ const createEngine = async ( options: EngineOptions, workerPath?: string ): Promise => { - const states: Record = {}; const contexts: Record = {}; const deferredListeners: Record[]> = {}; @@ -144,17 +142,6 @@ const createEngine = async ( retries: options.workerValidationRetries, }); - const registerWorkflow = (plan: ExecutionPlan, input: State) => { - // TODO throw if already registered? - const state = createState(plan, input); - states[state.id] = state; - return state; - }; - - const getWorkflowState = (workflowId: string) => states[workflowId]; - - const getWorkflowStatus = (workflowId: string) => states[workflowId]?.status; - // TODO too much logic in this execute function, needs farming out // I don't mind having a wrapper here but it must be super thin // TODO maybe engine options is too broad? @@ -165,13 +152,9 @@ const createEngine = async ( ) => { options.logger!.debug('executing plan ', plan?.id ?? ''); const workflowId = plan.id!; - // TODO throw if plan is invalid - // Wait, don't throw because the server will die - // Maybe return null instead - const state = registerWorkflow(plan, input); const context = new ExecutionContext({ - state, + state: createState(plan, input), logger: options.logger!, callWorker, options: { @@ -244,9 +227,6 @@ const createEngine = async ( options, workerPath: resolvedWorkerPath, logger: options.logger, - registerWorkflow, - getWorkflowState, - getWorkflowStatus, execute: executeWrapper, listen, destroy, diff --git a/packages/engine-multi/test/engine.test.ts b/packages/engine-multi/test/engine.test.ts index 595b2c70e..a48e13046 100644 --- a/packages/engine-multi/test/engine.test.ts +++ b/packages/engine-multi/test/engine.test.ts @@ -1,7 +1,6 @@ import test from 'ava'; import path from 'node:path'; import { createMockLogger } from '@openfn/logger'; -import type { ExecutionPlan } from '@openfn/lexicon'; import createEngine, { InternalEngine } from '../src/engine'; import * as e from '../src/events'; @@ -53,28 +52,6 @@ test.serial('create an engine', async (t) => { test.todo('throw if the worker is invalid'); -test.serial('register a workflow', async (t) => { - const plan = { id: 'z' }; - engine = await createEngine(options); - - const state = engine.registerWorkflow(plan); - - t.is(state.status, 'pending'); - t.is(state.id, plan.id); - t.deepEqual(state.plan, plan); -}); - -test.serial('get workflow state', async (t) => { - const plan = { id: 'z' } as ExecutionPlan; - engine = await createEngine(options); - - const s = engine.registerWorkflow(plan); - - const state = engine.getWorkflowState(plan.id); - - t.deepEqual(state, s); -}); - test.serial('use the default worker path', async (t) => { engine = await createEngine({ logger, repoDir: '.' }); t.true(engine.workerPath.endsWith('worker/thread/run.js')); diff --git a/packages/engine-multi/test/memtest.ts b/packages/engine-multi/test/memtest.ts index 768088351..b3ae4399c 100644 --- a/packages/engine-multi/test/memtest.ts +++ b/packages/engine-multi/test/memtest.ts @@ -1,7 +1,7 @@ // run this file with limited memory // --max-old-space-size=50 or whatever // NODE_OPTIONS="--max-old-space-size=50" - +import { getHeapStatistics } from 'node:v8'; import { createMockLogger } from '@openfn/logger'; import { randomUUID } from 'node:crypto'; import createAPI from '../src/api'; @@ -11,10 +11,16 @@ const logger = createMockLogger(); let api: any; +function heap(reason: string) { + const { used_heap_size } = getHeapStatistics(); + const mb = used_heap_size / 1024 / 1024; + console.log(`>> [${reason}] Used heap at ${mb.toFixed(2)}mb`); +} + function run() { const job = ` export default [(state) => { - state.data = new Array(1024 * 1024 * 4).fill('z').join('') + state.data = new Array(1024 * 1024 * 7).fill('z').join('') return state }]`; @@ -29,29 +35,39 @@ function run() { }, options: {}, }; - console.log('>> running', plan.id); + // console.log('>> running', plan.id); api.execute(plan, {}); api.listen(plan.id!, { 'workflow-complete': () => { completedCount++; + heap('workflow-complete'); console.log('>> Finished', completedCount); - setTimeout(() => { - run(); - }, 10); + // setTimeout(() => { + // run(); + // }, 10); }, }); } +const runBatch = () => { + for (let i = 0; i < 4; i++) { + run(); + } +}; + async function start() { api = await createAPI({ logger, - maxWorkers: 1, + maxWorkers: 4, }); - run(); + runBatch(); + setInterval(() => { + runBatch(); + }, 200); } start(); diff --git a/packages/lexicon/core.d.ts b/packages/lexicon/core.d.ts index 8d0ae075f..267acf6bb 100644 --- a/packages/lexicon/core.d.ts +++ b/packages/lexicon/core.d.ts @@ -83,6 +83,9 @@ export type Workflow = { globals?: string; openfn?: OpenFnMetadata; + + // holds history information of a workflow + history?: string[] }; export type StepId = string; diff --git a/packages/lightning-mock/CHANGELOG.md b/packages/lightning-mock/CHANGELOG.md index 0e76230b0..1292ff7e2 100644 --- a/packages/lightning-mock/CHANGELOG.md +++ b/packages/lightning-mock/CHANGELOG.md @@ -1,5 +1,12 @@ # @openfn/lightning-mock +## 2.3.2 + +### Patch Changes + +- Updated dependencies [b61bf9b] + - @openfn/engine-multi@1.7.1 + ## 2.3.1 ### Patch Changes diff --git a/packages/lightning-mock/package.json b/packages/lightning-mock/package.json index 84b188bbe..cae1c5334 100644 --- a/packages/lightning-mock/package.json +++ b/packages/lightning-mock/package.json @@ -1,6 +1,6 @@ { "name": "@openfn/lightning-mock", - "version": "2.3.1", + "version": "2.3.2", "private": true, "description": "A mock Lightning server", "main": "dist/index.js", diff --git a/packages/project/CHANGELOG.md b/packages/project/CHANGELOG.md index 8ebc3a427..ac71a051e 100644 --- a/packages/project/CHANGELOG.md +++ b/packages/project/CHANGELOG.md @@ -1,5 +1,23 @@ # @openfn/project +## 0.7.0 + +### Minor Changes + +- 16da2ef: Warn when merging two projects might result in lost work + +### Patch Changes + +- 16da2ef: Internal refactoring for clarity and cleaner APIs + +## 0.6.1 + +### Patch Changes + +- f955548: On merge, warn when projects may have diverged +- edfc759: Refactor project.repo to project.config +- 329d29d: Include `source_trigger_id` in generated workflows (for lightning compatibility) + ## 0.6.0 ### Minor Changes diff --git a/packages/project/package.json b/packages/project/package.json index 739c6330d..a62c8ee67 100644 --- a/packages/project/package.json +++ b/packages/project/package.json @@ -1,6 +1,6 @@ { "name": "@openfn/project", - "version": "0.6.0", + "version": "0.7.0", "description": "Read, serialize, replicate and sync OpenFn projects", "scripts": { "test": "pnpm ava", diff --git a/packages/project/src/Project.ts b/packages/project/src/Project.ts index bf725df05..f96de8280 100644 --- a/packages/project/src/Project.ts +++ b/packages/project/src/Project.ts @@ -1,46 +1,24 @@ -import * as l from '@openfn/lexicon'; import Workflow from './Workflow'; import * as serializers from './serialize'; -import fromAppState from './parse/from-app-state'; -import fromPath from './parse/from-path'; +import fromAppState, { FromAppStateConfig } from './parse/from-app-state'; +import fromPath, { FromPathConfig } from './parse/from-path'; // TODO this naming clearly isn't right import { parseProject as fromFs, FromFsConfig } from './parse/from-fs'; import getIdentifier from './util/get-identifier'; import slugify from './util/slugify'; import { getUuidForEdge, getUuidForStep } from './util/uuid'; import { merge, MergeProjectOptions } from './merge/merge-project'; +import { Workspace } from './Workspace'; +import { buildConfig, WorkspaceConfig } from './util/config'; type MergeOptions = { force?: boolean; workflows?: string[]; // which workflows to include }; -type FileFormats = 'yaml' | 'json'; - const maybeCreateWorkflow = (wf: any) => wf instanceof Workflow ? wf : new Workflow(wf); -export interface OpenfnConfig { - name: string; - workflowRoot: string; - dirs: { - workflows: string; - projects: string; - }; - formats: { - openfn: FileFormats; - project: FileFormats; - workflow: FileFormats; - }; - project: { - projectId: string; - endpoint: string; - env: string; - inserted_at: string; - updated_at: string; - }; -} - // TODO -------------- // I think this needs renaming to config // and it's part of the workspace technically @@ -68,16 +46,7 @@ type RepoOptions = { // TODO maybe use an npm for this, or create util -const setConfigDefaults = (config: OpenfnConfig = {}) => ({ - ...config, - workflowRoot: config.workflowRoot ?? 'workflows', - formats: { - // TODO change these maybe - openfn: config.formats?.openfn ?? 'yaml', - project: config.formats?.project ?? 'yaml', - workflow: config.formats?.workflow ?? 'yaml', - }, -}); +// TODO this need to be controlled by the workspace // A single openfn project // could be an app project or a checked out fs @@ -106,10 +75,9 @@ export class Project { // this contains meta about the connected openfn project openfn?: l.ProjectConfig; - // workspace-wide configuration options - // these should be shared across projects - // and saved to an openfn.yaml file - repo?: Required; + workspace?: Workspace; + + config: WorkspaceConfig; // load a project from a state file (project.json) // or from a path (the file system) @@ -128,12 +96,12 @@ export class Project { static from( type: 'path', data: string, - options?: { config?: Partial } + options?: { config?: FromPathConfig } ): Project; static from( type: 'state' | 'path' | 'fs', data: any, - options: Partial = {} + options: FromAppStateConfig = {} ): Project { if (type === 'state') { return fromAppState(data, options); @@ -159,8 +127,11 @@ export class Project { // uh maybe // maybe this second arg is config - like env, branch rules, serialisation rules // stuff that's external to the actual project and managed by the repo + + // TODO maybe the constructor is (data, Workspace) constructor(data: l.Project, repoConfig: RepoOptions = {}) { - this.repo = setConfigDefaults(repoConfig); + this.setConfig(repoConfig); + this.name = data.name; this.description = data.description; this.openfn = data.openfn; @@ -171,6 +142,10 @@ export class Project { this.meta = data.meta; } + setConfig(config: Partial) { + this.config = buildConfig(config); + } + serialize(type: 'json' | 'yaml' | 'fs' | 'state' = 'json', options?: any) { if (type in serializers) { // @ts-ignore diff --git a/packages/project/src/Workflow.ts b/packages/project/src/Workflow.ts index 19a9b7574..721e51e43 100644 --- a/packages/project/src/Workflow.ts +++ b/packages/project/src/Workflow.ts @@ -30,6 +30,9 @@ class Workflow { this.workflow = clone(workflow); + // history needs to be on workflow object. + this.workflow.history = workflow.history?.length ? workflow.history : []; + const { id, name, openfn, steps, ...options } = workflow; if (!(id || name)) { throw new Error('A Workflow MUST have a name or id'); @@ -167,6 +170,22 @@ class Workflow { getVersionHash() { return generateHash(this); } + + pushHistory(versionHash: string) { + this.workflow.history?.push(versionHash); + } + + // return true if the current workflow can be merged into the target workflow without losing any changes + canMergeInto(target: Workflow) { + const thisHistory = this.workflow.history?.concat(this.getVersionHash()); + const targetHistory = target.workflow.history?.concat( + target.getVersionHash() + ); + + const targetHead = targetHistory[targetHistory.length - 1]; + if (thisHistory.indexOf(targetHead) > -1) return true; + return false; + } } export default Workflow; diff --git a/packages/project/src/Workspace.ts b/packages/project/src/Workspace.ts index ba1204f23..0b196bf0c 100644 --- a/packages/project/src/Workspace.ts +++ b/packages/project/src/Workspace.ts @@ -1,32 +1,44 @@ -// when given a file path from cli it'll create a workspace object -import { OpenfnConfig, Project } from './Project'; +import path from 'node:path'; +import fs from 'node:fs'; + +import { Project } from './Project'; +import type { WorkspaceConfig } from './util/config'; +import fromAppState from './parse/from-app-state'; import pathExists from './util/path-exists'; import { yamlToJson } from './util/yaml'; -import path from 'path'; -import fs from 'fs'; -import fromAppState from './parse/from-app-state'; +import { + buildConfig, + loadWorkspaceFile, + findWorkspaceFile, +} from './util/config'; -const PROJECTS_DIRECTORY = '.projects'; -const OPENFN_YAML_FILE = 'openfn.yaml'; const PROJECT_EXTENSIONS = ['.yaml', '.yml']; export class Workspace { - private config?: OpenfnConfig; + config?: WorkspaceConfig; + projectMeta: ProjectMeta; + private projects: Project[] = []; private projectPaths = new Map(); private isValid: boolean = false; + constructor(workspacePath: string) { - const openfnYamlPath = path.join(workspacePath, OPENFN_YAML_FILE); - // dealing with openfn.yaml - if (pathExists(openfnYamlPath, 'file')) { + let context; + try { + const { type, content } = findWorkspaceFile(workspacePath); + console.log(content); + context = loadWorkspaceFile(content, type); this.isValid = true; - const data = fs.readFileSync(openfnYamlPath, 'utf-8'); - this.config = yamlToJson(data); + } catch (e) { + console.log(e); + // invalid workspace + return; } - const projectsPath = path.join( - workspacePath, - this.config?.dirs?.projects ?? PROJECTS_DIRECTORY - ); + + this.config = buildConfig(context.workspace); + this.projectMeta = context.project; + + const projectsPath = path.join(workspacePath, this.config.dirs.projects); // dealing with projects if (this.isValid && pathExists(projectsPath, 'directory')) { @@ -50,10 +62,18 @@ export class Workspace { } } + // TODO + // This will load a project within this workspace + // uses Project.from + // Rather than doing new Workspace + Project.from(), + // you can do it in a single call + loadProject() {} + list() { return this.projects; } + // TODO clear up name/id confusion get(id: string) { return this.projects.find((p) => p.name === id); } @@ -63,15 +83,19 @@ export class Workspace { } getActiveProject() { - return this.projects.find((p) => p.name === this.config?.name); + // TODO should use id, not name + return this.projects.find((p) => p.name === this.projectMeta?.name); } - getConfig(): Partial { + // TODO this needs to return default values + // We should always rely on the workspace to load these values + getConfig(): Partial { return this.config; } get activeProjectId() { - return this.config?.name; + // TODO should return activeProject.id + return this.projectMeta?.name; } get valid() { diff --git a/packages/project/src/merge/merge-project.ts b/packages/project/src/merge/merge-project.ts index 09becaae5..3e6516672 100644 --- a/packages/project/src/merge/merge-project.ts +++ b/packages/project/src/merge/merge-project.ts @@ -1,4 +1,3 @@ -import { Workflow } from '@openfn/lexicon'; import { defaultsDeep, isEmpty } from 'lodash-es'; import { Project } from '../Project'; @@ -6,12 +5,12 @@ import { mergeWorkflows } from './merge-node'; import mapUuids from './map-uuids'; import baseMerge from '../util/base-merge'; import getDuplicates from '../util/get-duplicates'; +import Workflow from '../Workflow'; export type MergeProjectOptions = Partial<{ workflowMappings: Record; // removeUnmapped: boolean; - - force: boolean; // TODO not implemented yet + force: boolean; }>; /** @@ -32,6 +31,7 @@ export function merge( const defaultOptions: MergeProjectOptions = { workflowMappings: {}, removeUnmapped: false, + force: true, }; options = defaultsDeep(options, defaultOptions); @@ -56,6 +56,27 @@ export function merge( return !!options?.workflowMappings[w.id]; }); + // mergeability + const potentialConflicts: Record = {}; + for (const sourceWorkflow of sourceWorkflows) { + const targetId = + options.workflowMappings?.[sourceWorkflow.id] ?? sourceWorkflow.id; + const targetWorkflow = target.getWorkflow(targetId); + if (targetWorkflow && !sourceWorkflow.canMergeInto(targetWorkflow)) { + potentialConflicts[sourceWorkflow.name] = targetWorkflow?.name; + } + } + + if (Object.keys(potentialConflicts).length && !options?.force) { + throw new Error( + `The below workflows can't be merged directly without losing data\n${Object.entries( + potentialConflicts + ) + .map(([from, to]) => `${from} → ${to}`) + .join('\n')}\nPass --force to force the merge anyway` + ); + } + for (const sourceWorkflow of sourceWorkflows) { const targetId = options.workflowMappings?.[sourceWorkflow.id] ?? sourceWorkflow.id; diff --git a/packages/project/src/parse/from-app-state.ts b/packages/project/src/parse/from-app-state.ts index 13e1dde7c..d4edb58ff 100644 --- a/packages/project/src/parse/from-app-state.ts +++ b/packages/project/src/parse/from-app-state.ts @@ -2,19 +2,21 @@ import * as l from '@openfn/lexicon'; import { Provisioner } from '@openfn/lexicon/lightning'; -import { OpenfnConfig, Project } from '../Project'; +import { Project } from '../Project'; import { yamlToJson } from '../util/yaml'; import renameKeys from '../util/rename-keys'; +import { WorkspaceConfig } from '../util/config'; // Extra metadata used to init the project -type FromAppStateConfig = { +export type FromAppStateConfig = { endpoint: string; env?: string; fetchedAt?: string; format?: 'json' | 'yaml'; // Allow workspace config to be passed - repo: OpenfnConfig; + // TODO can we just pass a Workspace? + config: WorkspaceConfig; }; function slugify(text) { @@ -52,6 +54,7 @@ export default (state: Provisioner.Project, config: FromAppStateConfig) => { proj.openfn = { uuid: id, + name: name, endpoint: config.endpoint, env: config.env, inserted_at, @@ -65,7 +68,7 @@ export default (state: Provisioner.Project, config: FromAppStateConfig) => { proj.workflows = state.workflows.map(mapWorkflow); - return new Project(proj as l.Project, config?.repo); + return new Project(proj as l.Project, config?.config); }; const mapTriggerEdgeCondition = (edge: Provisioner.Edge) => { diff --git a/packages/project/src/parse/from-fs.ts b/packages/project/src/parse/from-fs.ts index f7fd6fc74..e408197ea 100644 --- a/packages/project/src/parse/from-fs.ts +++ b/packages/project/src/parse/from-fs.ts @@ -6,6 +6,13 @@ import * as l from '@openfn/lexicon'; import { Project } from '../Project'; import getIdentifier from '../util/get-identifier'; import { yamlToJson } from '../util/yaml'; +import { + buildConfig, + WorkspaceConfig, + WorkspaceFile, + loadWorkspaceFile, + findWorkspaceFile, +} from '../util/config'; import slugify from '../util/slugify'; import fromAppState from './from-app-state'; @@ -14,42 +21,20 @@ export type FromFsConfig = { }; // Parse a single project from a root folder -// focus on this first -// root must be absolute? export const parseProject = async (options: FromFsConfig = {}) => { const { root } = options; - const proj = {}; - let config; // TODO need a type for the shape of this file - try { - // TODO any flex on the openfn.json file name? - const file = await fs.readFile( - path.resolve(path.join(root, 'openfn.yaml')), - 'utf8' - ); - config = yamlToJson(file); - } catch (e) { - // Not found - try and parse as JSON - try { - const file = await fs.readFile( - path.join(root || '.', 'openfn.json'), - 'utf8' - ); - config = JSON.parse(file); - } catch (e) { - console.log(e); - // TODO better error handling - throw e; - } - } + const { type, content } = findWorkspaceFile(root); + const context = loadWorkspaceFile(content, type); + const config = buildConfig(context.workspace); // Now we need to look for the corresponding state file // Need to load UUIDs and other app settings from this // If we load it as a Project, uuid tracking is way easier let state: Project; const identifier = getIdentifier({ - endpoint: config.project?.endpoint, - env: config.project?.env, + endpoint: context.project?.endpoint, + env: context.project?.env, }); try { const format = @@ -66,11 +51,12 @@ export const parseProject = async (options: FromFsConfig = {}) => { console.warn(`Failed to find state file for ${identifier}`); // console.warn(e); } - // find the openfn settings - const { project: openfn, ...repo } = config; - proj.openfn = openfn; - proj.config = repo; + const proj = { + openfn: context.project, + config: config, + workflows: [], + }; // now find all the workflows // this will find all json files in the workflows folder @@ -129,7 +115,7 @@ export const parseProject = async (options: FromFsConfig = {}) => { } } - workflows.push(wf); + proj.workflows.push(wf); } } catch (e) { console.log(e); @@ -138,26 +124,8 @@ export const parseProject = async (options: FromFsConfig = {}) => { continue; } } - // now for each workflow, read in the expression files - - proj.workflows = workflows; - - // TODO do the workflow folder and the workflows file need to be same name? - - // proj.openfn = { - // projectId: id, - // endpoint: config.endpoint, - // inserted_at, - // updated_at, - // }; - - // // TODO maybe this for local metadata, stuff that isn't synced? - // proj.meta = { - // fetched_at: config.fetchedAt, - // }; - // proj.workflows = state.workflows.map(mapWorkflow); - return new Project(proj as l.Project, repo); + return new Project(proj as l.Project, context.workspace); }; // Parse the filesystem for all projects diff --git a/packages/project/src/parse/from-path.ts b/packages/project/src/parse/from-path.ts index 185c17a35..a300bfb4f 100644 --- a/packages/project/src/parse/from-path.ts +++ b/packages/project/src/parse/from-path.ts @@ -3,11 +3,10 @@ import { readFile } from 'node:fs/promises'; import fromAppState from './from-app-state'; import { yamlToJson } from '../util/yaml'; -import { OpenfnConfig } from '../Project'; +import { WorkspaceConfig } from '../util/config'; -type FromPathConfig = { - // repo config options - repo: OpenfnConfig; +export type FromPathConfig = { + config: WorkspaceConfig; }; // Load a project from a file path @@ -21,7 +20,7 @@ export default async (path: string, options: FromPathConfig = {}) => { const config = { format: null, - repo: options.repo ?? options.config, // TMP + config: options.config, }; let state; if (ext === '.json') { diff --git a/packages/project/src/serialize/to-app-state.ts b/packages/project/src/serialize/to-app-state.ts index 3cade56bf..8fcd58892 100644 --- a/packages/project/src/serialize/to-app-state.ts +++ b/packages/project/src/serialize/to-app-state.ts @@ -26,7 +26,7 @@ export default function (project: Project, options: Options = {}) { const shouldReturnYaml = options.format === 'yaml' || - (!options.format && project.repo.formats.project === 'yaml'); + (!options.format && project.config.formats.project === 'yaml'); if (shouldReturnYaml) { return jsonToYaml(state); @@ -94,6 +94,7 @@ const mapWorkflow = (workflow) => { id: rules.openfn?.uuid ?? randomUUID(), target_job_id: lookup[next], enabled: !rules.disabled, + source_trigger_id: null, // lightning complains if this isn't set, even if its falsy :( }; if (isTrigger) { diff --git a/packages/project/src/serialize/to-fs.ts b/packages/project/src/serialize/to-fs.ts index 8a2cf6f0a..ebd472f91 100644 --- a/packages/project/src/serialize/to-fs.ts +++ b/packages/project/src/serialize/to-fs.ts @@ -3,13 +3,14 @@ import nodepath from 'path'; import { Project } from '../Project'; import { jsonToYaml } from '../util/yaml'; +import { extractConfig } from '../util/config'; const stringify = (json) => JSON.stringify(json, null, 2); export default function (project: Project) { const files: Record = {}; - const { path, content } = extractRepoConfig(project); + const { path, content } = extractConfig(project); files[path] = content; for (const wf of project.workflows) { @@ -30,14 +31,15 @@ export default function (project: Project) { // extracts a workflow.json|yaml from a project export const extractWorkflow = (project: Project, workflowId: string) => { - const format = project.repo.formats.workflow; + const format = project.config.formats.workflow; const workflow = project.getWorkflow(workflowId); if (!workflow) { throw new Error(`workflow not found: ${workflowId}`); } - const root = project.repo?.workflowRoot ?? 'workflows/'; + const root = + project.config.dirs.workflow ?? project.config.workflowRoot ?? 'workflows/'; const path = nodepath.join(root, workflow.id, workflow.id); @@ -79,23 +81,11 @@ export const extractStep = (project: Project, workflowId, stepId) => { } }; -// extracts contents for openfn.yaml|json -export const extractRepoConfig = (project) => { - const format = project.repo.formats.openfn; - const config = { - name: project.name, - ...project.repo, - project: project.openfn ?? {}, - }; - - return handleOutput(config, 'openfn', format); -}; - const handleOutput = (data, filePath, format) => { const path = `${filePath}.${format}`; let content; if (format === 'json') { - content = stringify(data, null, 2); + content = stringify(data); } else if (format === 'yaml') { content = jsonToYaml(data); } else { diff --git a/packages/project/src/serialize/to-json.ts b/packages/project/src/serialize/to-json.ts index e8adc3015..958d34c9c 100644 --- a/packages/project/src/serialize/to-json.ts +++ b/packages/project/src/serialize/to-json.ts @@ -9,7 +9,7 @@ export default function (project: Project) { // Do we just serialize all public fields? name: project.name, description: project.description, - repo: project.repo, + config: project.config, meta: project.meta, workflows: project.workflows, collections: project.collections, diff --git a/packages/project/src/util/config.ts b/packages/project/src/util/config.ts new file mode 100644 index 000000000..df80ac59b --- /dev/null +++ b/packages/project/src/util/config.ts @@ -0,0 +1,171 @@ +import { readFileSync } from 'node:fs'; +import path from 'node:path'; +import { chain, pickBy, isNil } from 'lodash-es'; +import { yamlToJson, jsonToYaml } from './yaml'; + +// Initialize and default Workspace (and Project) config + +type FileFormats = 'yaml' | 'json'; + +// This is the old workspace config file, up to 0.6 +// TODO would like a better name than "Workspace File" +// Can't use config, it means something else (and not all of it is config!) +// State is good but overloaded +// Settings? Context? +export interface WorkspaceFileLegacy { + workflowRoot: string; + dirs: { + workflows: string; + projects: string; + }; + formats: { + openfn: FileFormats; + project: FileFormats; + workflow: FileFormats; + }; + + // TODO this isn't actually config - this is other stuff + name: string; + project: { + projectId: string; + endpoint: string; + env: string; + inserted_at: string; + updated_at: string; + }; +} + +// Structure of the new openfn.yaml file +export interface WorkspaceFile { + workspace: WorkspaceConfig; + project: ProjectMeta; +} + +export interface WorkspaceConfig { + dirs: { + workflows: string; + projects: string; + }; + formats: { + openfn: FileFormats; + project: FileFormats; + workflow: FileFormats; + }; +} + +// TODO this is not implemented yet +export interface ProjectMeta { + is: string; + name: string; + uuid: string; + endpoint: string; + env: string; + inserted_at: string; + updated_at: string; +} + +export const buildConfig = (config: WorkspaceConfig = {}) => ({ + ...config, + dirs: { + projects: '.projects', // TODO change to projects + workflows: 'workflows', + }, + formats: { + openfn: config.formats?.openfn ?? 'yaml', + project: config.formats?.project ?? 'yaml', + workflow: config.formats?.workflow ?? 'yaml', + }, +}); + +// Generate a workspace config (openfn.yaml) file for a project +export const extractConfig = (source: Project) => { + const project = { + ...(source.openfn || {}), + }; + const workspace = { + ...source.config, + }; + + const content = { project, workspace }; + + const format = workspace.formats.openfn; + if (format === 'yaml') { + return { + path: 'openfn.yaml', + content: jsonToYaml(content), + }; + } + return { + path: 'openfn.json', + content: JSON.stringify(content, null, 2), + }; +}; + +export const loadWorkspaceFile = ( + contents: string | WorkspaceFile | WorkspaceFileLegacy, + format: 'yaml' | 'json' = 'yaml' +) => { + let project, workspace; + let json = contents; + if (format === 'yaml') { + json = yamlToJson(contents) ?? {}; + } else if (typeof contents === 'string') { + json = JSON.parse(contents); + } + + const legacy = !json.workspace && !json.projects; + if (legacy) { + project = json.project ?? {}; + if (json.name) { + project.name = json.name; + } + + // prettier-ignore + const { + formats, + dirs, + project: _ /* ignore!*/, + name, + ...rest + } = json; + + workspace = pickBy( + { + ...rest, + formats, + dirs, + }, + (value) => !isNil(value) + ); + } else { + project = json.project ?? {}; + workspace = json.workspace ?? {}; + } + + return { project, workspace }; +}; + +export const findWorkspaceFile = (dir: string = '.') => { + console.log({ dir }); + let content, type; + try { + type = 'yaml'; + console.log(path.resolve(path.join(dir, 'openfn.yaml'))); + content = readFileSync(path.resolve(path.join(dir, 'openfn.yaml')), 'utf8'); + console.log({ content }); + } catch (e) { + // Not found - try and parse as JSON + try { + type = 'json'; + const file = readFileSync(path.join(dir, 'openfn.json'), 'utf8'); + if (file) { + content = JSON.parse(file); + } + } catch (e) { + console.log(e); + // TODO better error handling + throw e; + } + } + return { content, type }; +}; diff --git a/packages/project/test/gen/fixtures.ts b/packages/project/test/gen/fixtures.ts index e75597307..a33dd9725 100644 --- a/packages/project/test/gen/fixtures.ts +++ b/packages/project/test/gen/fixtures.ts @@ -4,6 +4,7 @@ export const ab = { id: 'workflow', name: 'Workflow', + history: [], steps: [ { id: 'a', diff --git a/packages/project/test/gen/generator.test.ts b/packages/project/test/gen/generator.test.ts index 794a0c59b..0c2ab6863 100644 --- a/packages/project/test/gen/generator.test.ts +++ b/packages/project/test/gen/generator.test.ts @@ -120,6 +120,7 @@ test('it should generate a simple workflow with any letter', (t) => { const expected = { id: 'workflow', name: 'Workflow', + history: [], steps: [ { id: 'x', @@ -152,6 +153,7 @@ test('it should generate a simple workflow with words, numbers and underscores', const expected = { id: 'workflow', name: 'Workflow', + history: [], steps: [ { id: 'node_1', @@ -184,6 +186,7 @@ test('it should generate two node pairs', (t) => { const expected = { id: 'workflow', name: 'Workflow', + history: [], steps: [ { id: 'a', @@ -231,6 +234,7 @@ test('it should generate two node pairs from one parent', (t) => { const expected = { id: 'workflow', name: 'Workflow', + history: [], steps: [ { id: 'a', @@ -276,6 +280,7 @@ test('it should generate several node pairs', (t) => { const expected = { id: 'workflow', name: 'Workflow', + history: [], steps: [ { id: 'a', @@ -439,6 +444,7 @@ test('it should generate a simple workflow with mapped uuids', (t) => { const expected = { id: 'workflow', name: 'Workflow', + history: [], steps: [ { id: 'a', @@ -481,6 +487,7 @@ test('it should generate a project with uuids', (t) => { const expected = { id: 'workflow', name: 'Workflow', + history: [], steps: [ { id: 'a', diff --git a/packages/project/test/parse/from-app-state.test.ts b/packages/project/test/parse/from-app-state.test.ts index 16fda2237..a2c66e163 100644 --- a/packages/project/test/parse/from-app-state.test.ts +++ b/packages/project/test/parse/from-app-state.test.ts @@ -75,6 +75,7 @@ test('should create a Project from prov state with app project metadata', (t) => t.deepEqual(project.openfn, { env: 'test', uuid: state.id, + name: 'My Workflow', endpoint: config.endpoint, inserted_at: state.inserted_at, updated_at: state.updated_at, @@ -114,6 +115,7 @@ test('should create a Project from prov state with a workflow', (t) => { t.deepEqual(project.workflows[0].toJSON(), { id: 'my-workflow', name: 'My Workflow', + history: [], steps: [ { id: 'trigger', diff --git a/packages/project/test/parse/from-fs.test.ts b/packages/project/test/parse/from-fs.test.ts index 98ce209d7..07f12dca8 100644 --- a/packages/project/test/parse/from-fs.test.ts +++ b/packages/project/test/parse/from-fs.test.ts @@ -117,8 +117,11 @@ mock({ // p3 uses custom yaml '/p3/openfn.yaml': ` -x: 1 -y: 2`, +workspace: + x: 1 + y: 2 +project: +`, '/p3/wfs/my-workflow/my-workflow.yaml': ` id: my-workflow name: My Workflow @@ -130,34 +133,35 @@ y: 2`, '/p3/wfs/my-workflow/job.js': `fn(s => s)`, }); -test('should load the openfn repo config from json', async (t) => { +test('should load workspace config from json', async (t) => { const project = await parseProject({ root: '/p1' }); - t.deepEqual(project.repo, { + t.deepEqual(project.config, { workflowRoot: 'workflows', + dirs: { projects: '.projects', workflows: 'workflows' }, formats: { openfn: 'json', project: 'json', workflow: 'json' }, }); }); -test('should load custom repro props and include default', async (t) => { +test('should load custom config props and include default', async (t) => { const project = await parseProject({ root: '/p3' }); - t.deepEqual(project.repo, { + t.deepEqual(project.config, { x: 1, y: 2, - workflowRoot: 'workflows', + dirs: { projects: '.projects', workflows: 'workflows' }, formats: { openfn: 'yaml', project: 'yaml', workflow: 'yaml' }, }); }); -test('should load the openfn project config from json', async (t) => { +test('should load the workspace config from json', async (t) => { const project = await parseProject({ root: '/p1' }); t.deepEqual(project.openfn, { + name: 'My Project', id: 'e16c5f09-f0cb-4ba7-a4c2-73fcb2f29d00', env: 'staging', endpoint: 'https://app.openfn.org', - name: 'My Project', description: '...', }); }); diff --git a/packages/project/test/parse/from-path.test.ts b/packages/project/test/parse/from-path.test.ts index e0a5abfd1..d79911c81 100644 --- a/packages/project/test/parse/from-path.test.ts +++ b/packages/project/test/parse/from-path.test.ts @@ -46,10 +46,10 @@ test.serial('should use workspace config', async (t) => { x: 1234, }; const project = await fromPath('/p1/main@openfn.org.yaml', { - repo: config, + config, }); t.is(project.name, proj.name); t.deepEqual(project.openfn.uuid, proj.openfn.uuid); - t.is(project.repo.x, config.x); + t.is(project.config.x, config.x); }); diff --git a/packages/project/test/project.test.ts b/packages/project/test/project.test.ts index ac5475322..64186a183 100644 --- a/packages/project/test/project.test.ts +++ b/packages/project/test/project.test.ts @@ -2,7 +2,7 @@ import test from 'ava'; import type { Provisioner } from '@openfn/lexicon/lightning'; import { Project } from '../src/Project'; -import generateWorkflow from '../src/gen/generator'; +import generateWorkflow, { generateProject } from '../src/gen/generator'; // TODO move to fixtures and re-use? // Or use util function instead? @@ -104,7 +104,7 @@ test('should convert a state file to a project and back again', (t) => { t.is(project.name, state.name); // TODO: this hack is needed right now to serialize the state as json - project.repo.formats.project = 'json'; + project.config.formats.project = 'json'; const newState = project.serialize('state'); t.deepEqual(newState, state); @@ -154,3 +154,37 @@ test('should return UUIDs for everything', (t) => { }, }); }); + +test('incompatible-merge: should throw error when merge is incompatible', (t) => { + const source = generateWorkflow('trigger-x'); + source.pushHistory(source.getVersionHash()); + const target = generateWorkflow('trigger-y'); + target.pushHistory(target.getVersionHash()); + + t.false(source.canMergeInto(target)); + + const sourceProject = new Project({ workflows: [source] }); + const targetProject = new Project({ workflows: [target] }); + t.throws( + () => Project.merge(sourceProject, targetProject, { force: false }), + { + message: `The below workflows can't be merged directly without losing data\nWorkflow → Workflow\nPass --force to force the merge anyway`, + } + ); +}); + +test('incompatible-merge-force: should ignore incompatiblity and merge when forced', (t) => { + // same as the above test with force + const source = generateWorkflow('trigger-x'); + source.pushHistory(source.getVersionHash()); + const target = generateWorkflow('trigger-y'); + target.pushHistory(target.getVersionHash()); + + t.false(source.canMergeInto(target)); + + const sourceProject = new Project({ workflows: [source] }); + const targetProject = new Project({ workflows: [target] }); + t.notThrows(() => + Project.merge(sourceProject, targetProject, { force: true }) + ); +}); diff --git a/packages/project/test/serialize/to-fs.test.ts b/packages/project/test/serialize/to-fs.test.ts index 4c40c2e1b..a455338aa 100644 --- a/packages/project/test/serialize/to-fs.test.ts +++ b/packages/project/test/serialize/to-fs.test.ts @@ -4,9 +4,9 @@ import { Project } from '../../src/Project'; import toFs, { extractWorkflow, extractStep, - extractRepoConfig, mapWorkflow, } from '../../src/serialize/to-fs'; +import { extractConfig } from '../../src/util/config'; const stringify = (json) => JSON.stringify(json, null, 2); @@ -184,131 +184,6 @@ test('extractWorkflow: single simple workflow with custom root', (t) => { t.is(path, 'openfn/wfs/my-workflow/my-workflow.json'); }); -test('extractStep: extract a step', (t) => { - const project = new Project({ - workflows: [ - { - id: 'my-workflow', - steps: [step], - }, - ], - }); - - const { path, content } = extractStep(project, 'my-workflow', 'step'); - - t.is(path, 'workflows/my-workflow/step.js'); - t.is(content, step.expression); -}); - -test('extractConfig: create a default openfn.json', (t) => { - const project = new Project( - { - openfn: { - env: 'main', - id: '123', - endpoint: 'app.openfn.org', - }, - workflows: [ - { - id: 'my-workflow', - steps: [step], - }, - ], - }, - // TODO still a little uncomfortable about this structure - { - formats: { - openfn: 'json', // note that we have to set this - }, - } - ); - const { path, content } = extractRepoConfig(project); - - t.is(path, 'openfn.json'); - t.deepEqual(JSON.parse(content), { - workflowRoot: 'workflows', - formats: { - openfn: 'json', - workflow: 'yaml', - project: 'yaml', - }, - project: { - id: '123', - endpoint: 'app.openfn.org', - env: 'main', - }, - }); -}); - -test('extractConfig: create a default openfn.yaml', (t) => { - const project = new Project({ - name: 'My Project', - openfn: { - env: 'main', - id: '123', - endpoint: 'app.openfn.org', - }, - workflows: [ - { - id: 'my-workflow', - steps: [step], - }, - ], - }); - - const { path, content } = extractRepoConfig(project); - - t.is(path, 'openfn.yaml'); - t.is( - content, - `name: My Project -workflowRoot: workflows -formats: - openfn: yaml - project: yaml - workflow: yaml -project: - env: main - id: "123" - endpoint: app.openfn.org -` - ); -}); - -test('extractConfig: include empty project config for local projects', (t) => { - const project = new Project( - { - // no openfn obj! - workflows: [ - { - id: 'my-workflow', - steps: [step], - }, - ], - }, - { - formats: { - openfn: 'json', // for easier testing - }, - } - ); - - const { path, content } = extractRepoConfig(project); - t.log(path); - t.log(content); - - t.is(path, 'openfn.json'); - t.deepEqual(JSON.parse(content), { - workflowRoot: 'workflows', - formats: { - openfn: 'json', - workflow: 'yaml', - project: 'yaml', - }, - project: {}, - }); -}); - test('toFs: extract a project with 1 workflow and 1 step', (t) => { const project = new Project( { @@ -340,8 +215,10 @@ test('toFs: extract a project with 1 workflow and 1 step', (t) => { // (this should be validated in more detail by each step) const config = JSON.parse(files['openfn.json']); t.deepEqual(config, { - workflowRoot: 'workflows', - formats: { openfn: 'json', project: 'yaml', workflow: 'json' }, + workspace: { + formats: { openfn: 'json', project: 'yaml', workflow: 'json' }, + dirs: { projects: '.projects', workflows: 'workflows' }, + }, project: {}, }); diff --git a/packages/project/test/util/config.test.ts b/packages/project/test/util/config.test.ts new file mode 100644 index 000000000..b463d52d0 --- /dev/null +++ b/packages/project/test/util/config.test.ts @@ -0,0 +1,182 @@ +import test from 'ava'; +import { + extractConfig, + findWorkspaceFile, + loadWorkspaceFile, +} from '../../src/util/config'; +import mock from 'mock-fs'; +import Project from '../../src'; + +test.afterEach(() => { + mock.restore(); +}); + +test('load config as yaml', (t) => { + const yaml = ` +workspace: + formats: + openfn: yaml + project: json + workflow: yaml + x: 1 +project: + name: joe-sandbox-testing + uuid: d3367267-ef25-41cf-91b2-43d18f831f3c + endpoint: https://app.staging.openfn.org + env: dev + inserted_at: 2025-10-21T17:10:57Z + updated_at: 2025-10-21T17:10:57Z +`; + const result = loadWorkspaceFile(yaml); + + t.deepEqual(result.workspace, { + formats: { + openfn: 'yaml', + project: 'json', + workflow: 'yaml', + }, + x: 1, + }); + t.deepEqual(result.project, { + name: 'joe-sandbox-testing', + uuid: 'd3367267-ef25-41cf-91b2-43d18f831f3c', + endpoint: 'https://app.staging.openfn.org', + env: 'dev', + inserted_at: '2025-10-21T17:10:57Z', + updated_at: '2025-10-21T17:10:57Z', + }); +}); + +test.todo('load config as json'); + +// Note that the legacy format is the old 0.6 version of openfn.yaml +test('legacy: load config as yaml', (t) => { + const yaml = ` +name: joe-sandbox-testing +workflowRoot: workflows +formats: + openfn: yaml + project: json + workflow: yaml +project: + uuid: d3367267-ef25-41cf-91b2-43d18f831f3c + endpoint: https://app.staging.openfn.org + env: dev + inserted_at: 2025-10-21T17:10:57Z + updated_at: 2025-10-21T17:10:57Z +`; + const result = loadWorkspaceFile(yaml); + + t.deepEqual(result.workspace, { + workflowRoot: 'workflows', + formats: { + openfn: 'yaml', + project: 'json', + workflow: 'yaml', + }, + }); + t.deepEqual(result.project, { + name: 'joe-sandbox-testing', + uuid: 'd3367267-ef25-41cf-91b2-43d18f831f3c', + endpoint: 'https://app.staging.openfn.org', + env: 'dev', + inserted_at: '2025-10-21T17:10:57Z', + updated_at: '2025-10-21T17:10:57Z', + }); +}); + +test('legacy: load config as json', (t) => { + const json = JSON.stringify({ + name: 'joe-sandbox-testing', + workflowRoot: 'workflows', + formats: { + openfn: 'yaml', + project: 'json', + workflow: 'yaml', + }, + project: { + uuid: 'd3367267-ef25-41cf-91b2-43d18f831f3c', + endpoint: 'https://app.staging.openfn.org', + env: 'dev', + inserted_at: '2025-10-21T17:10:57Z', + updated_at: '2025-10-21T17:10:57Z', + }, + }); + const result = loadWorkspaceFile(json, 'json'); + + t.deepEqual(result.workspace, { + workflowRoot: 'workflows', + formats: { + openfn: 'yaml', + project: 'json', + workflow: 'yaml', + }, + }); + t.deepEqual(result.project, { + name: 'joe-sandbox-testing', + uuid: 'd3367267-ef25-41cf-91b2-43d18f831f3c', + endpoint: 'https://app.staging.openfn.org', + env: 'dev', + inserted_at: '2025-10-21T17:10:57Z', + updated_at: '2025-10-21T17:10:57Z', + }); +}); + +test('legacy: load empty config', (t) => { + const yaml = ``; + const result = loadWorkspaceFile(yaml); + + t.deepEqual(result.workspace, {}); + t.deepEqual(result.project, {}); +}); + +test('find openfn.yaml', (t) => { + mock({ '/tmp/openfn.yaml': 'x: 1' }); + + const result = findWorkspaceFile('/tmp'); + t.is(result.type, 'yaml'); + t.is(result.content, 'x: 1'); +}); + +test('find openfn.json', (t) => { + mock({ '/tmp/openfn.json': '{ "x": 1 }' }); + + const result = findWorkspaceFile('/tmp'); + t.is(result.type, 'json'); + t.deepEqual(result.content, { x: 1 }); +}); + +test('generate openfn.yaml', (t) => { + const proj = new Project( + { + id: 'p1', + name: 'My Project', + openfn: { + uuid: 1234, + }, + }, + { + formats: { + openfn: 'yaml', + }, + } + ); + const result = extractConfig(proj); + t.is(result.path, 'openfn.yaml'), + t.deepEqual( + result.content, + `project: + uuid: 1234 +workspace: + formats: + openfn: yaml + project: yaml + workflow: yaml + dirs: + projects: .projects + workflows: workflows +` + ); +}); + +test.todo('generate openfn.json'); diff --git a/packages/project/test/util/version-workflow.test.ts b/packages/project/test/util/version-workflow.test.ts index 4b75ea774..1977d3839 100644 --- a/packages/project/test/util/version-workflow.test.ts +++ b/packages/project/test/util/version-workflow.test.ts @@ -38,10 +38,10 @@ test('unique hash but different steps order', (t) => { // different order of nodes (b & c changed position) but should generate the same hash // validate second step is actually different - t.is(workflow1.steps[1].name, 'b') - t.is(workflow2.steps[1].name, 'c') + t.is(workflow1.steps[1].name, 'b'); + t.is(workflow2.steps[1].name, 'c'); // assert that hashes are the same - t.is(generateHash(workflow1), generateHash(workflow2)) + t.is(generateHash(workflow1), generateHash(workflow2)); }); /** @@ -63,7 +63,7 @@ test('hash changes when workflow name changes', (t) => { b-c ` ); - const wf2= generateWorkflow( + const wf2 = generateWorkflow( ` @name wf-2 @id workflow-id @@ -98,7 +98,7 @@ test.skip('hash changes when credentials field changes', (t) => { }); test("hash changes when a step's adaptor changes", (t) => { - const wf1 = generateWorkflow( + const wf1 = generateWorkflow( ` @name wf-1 @id workflow-id diff --git a/packages/project/test/workflow.test.ts b/packages/project/test/workflow.test.ts index 82e7b914a..008db9f94 100644 --- a/packages/project/test/workflow.test.ts +++ b/packages/project/test/workflow.test.ts @@ -1,9 +1,11 @@ import { randomUUID } from 'node:crypto'; import test from 'ava'; import Workflow from '../src/Workflow'; +import { generateWorkflow } from '../src'; const simpleWorkflow = { id: 'my-workflow', + history: [], name: 'My Workflow', steps: [ { @@ -49,6 +51,11 @@ const simpleWorkflow = { }, }; +// should workflow.toJSON actually do this? +function realJson(v: any) { + return JSON.parse(JSON.stringify(v)); +} + test('create a Workflow from json', (t) => { const w = new Workflow(simpleWorkflow); @@ -205,3 +212,98 @@ test('map uuids to ids', (t) => { t.deepEqual(w.index.id[uuid_ac], 'a-c'); t.deepEqual(w.index.id[uuid_bc], 'b-c'); }); + +test('canMergeInto: should merge same content source & target', (t) => { + const main = generateWorkflow('trigger-x'); + const sbox = generateWorkflow('trigger-x'); + + t.true(sbox.canMergeInto(main)); +}); + +test("canMergeInto: shouldn't merge different content source & target", (t) => { + const main = generateWorkflow('trigger-x'); + const sbox = generateWorkflow('trigger-y'); + + t.false(sbox.canMergeInto(main)); +}); + +test('canMergeInto: source is target + changes', (t) => { + // initial main code + const main = generateWorkflow('trigger-x'); + main.pushHistory(main.getVersionHash()); + // main code updated + main.workflow.steps = generateWorkflow('trigger-x x-y').steps; + main.pushHistory(main.getVersionHash()); + + // clone main for sbox + const sbox = new Workflow(realJson(main.toJSON())); + // do code changes to sbox + sbox.workflow.steps = generateWorkflow('trigger-x x-y y-z').steps; + t.true(sbox.canMergeInto(main)); +}); + +test("canMergeInto: source isn't from target", (t) => { + // initial main code + const main = generateWorkflow('trigger-x'); + main.pushHistory(main.getVersionHash()); + // main code updated + main.workflow.steps = generateWorkflow('trigger-x x-y').steps; + main.pushHistory(main.getVersionHash()); + + // clone main for sbox + const sbox = generateWorkflow('trigger-y'); + sbox.pushHistory(sbox.getVersionHash()); + t.false(sbox.canMergeInto(main)); +}); + +test("canMergeInto: source isn't from target but ended with same code", (t) => { + // initial main code + const main = generateWorkflow('trigger-x'); + main.pushHistory(main.getVersionHash()); + // main code updated + main.workflow.steps = generateWorkflow('trigger-x x-y').steps; + main.pushHistory(main.getVersionHash()); + + const sbox = generateWorkflow('trigger-x x-y'); + t.true(sbox.canMergeInto(main)); +}); + +test('canMergeInto: source is from target but target has changes', (t) => { + // initial main code + const main = generateWorkflow('trigger-x'); + main.pushHistory(main.getVersionHash()); + // main code updated + main.workflow.steps = generateWorkflow('trigger-x x-y').steps; + main.pushHistory(main.getVersionHash()); + + // clone main for sbox + const sbox = new Workflow(realJson(main.toJSON())); + + // changes to main after cloning + main.workflow.steps = generateWorkflow('trigger-x x-y x-z').steps; + main.pushHistory(main.getVersionHash()); + + // merging sbox to main + t.false(sbox.canMergeInto(main)); +}); + +test('canMergeInto: source is from target but target & source have changes', (t) => { + // initial main code + const main = generateWorkflow('trigger-x'); + main.pushHistory(main.getVersionHash()); + // main code updated + main.workflow.steps = generateWorkflow('trigger-x x-y').steps; + main.pushHistory(main.getVersionHash()); + + // clone main for sbox + const sbox = new Workflow(realJson(main.toJSON())); + // changes to sbox + sbox.workflow.steps = generateWorkflow('trigger-x x-y y-g').steps; + + // changes to main after cloning + main.workflow.steps = generateWorkflow('trigger-x x-y x-z').steps; + main.pushHistory(main.getVersionHash()); + + // merging sbox to main + t.false(sbox.canMergeInto(main)); +}); diff --git a/packages/project/test/workspace.test.ts b/packages/project/test/workspace.test.ts index 5e7c016b5..e1bdc2747 100644 --- a/packages/project/test/workspace.test.ts +++ b/packages/project/test/workspace.test.ts @@ -2,15 +2,22 @@ import mock from 'mock-fs'; import { jsonToYaml, Workspace } from '../src'; import test from 'ava'; +// TODO need a test on the legacy and new yaml formats here mock({ '/ws/openfn.yaml': jsonToYaml({ name: 'some-project-name', - workflowRoot: 'workflows', + project: { + uuid: '1234', + name: 'some-project-name', + }, formats: { openfn: 'yaml', project: 'yaml', workflow: 'yaml', + custom: true, // Note tha this will be excluded }, + // deliberately exclude dirs + custom: true, }), '/ws/.projects/staging@app.openfn.org.yaml': jsonToYaml({ id: 'some-id', @@ -105,3 +112,27 @@ test('workspace-get: get projects in the workspace', (t) => { ['simple-workflow', 'another-workflow'] ); }); + +test('load config', (t) => { + const ws = new Workspace('/ws'); + t.deepEqual(ws.config, { + formats: { + openfn: 'yaml', + project: 'yaml', + workflow: 'yaml', + }, + dirs: { + workflows: 'workflows', + projects: '.projects', + }, + custom: true, + }); +}); + +test('load project meta', (t) => { + const ws = new Workspace('/ws'); + t.deepEqual(ws.projectMeta, { + uuid: '1234', + name: 'some-project-name', + }); +}); diff --git a/packages/ws-worker/CHANGELOG.md b/packages/ws-worker/CHANGELOG.md index 4d0c41367..43a348485 100644 --- a/packages/ws-worker/CHANGELOG.md +++ b/packages/ws-worker/CHANGELOG.md @@ -1,5 +1,13 @@ # ws-worker +## 1.18.1 + +### Patch Changes + +- b61bf9b: Fix an issue where memory may not be released after runs +- Updated dependencies [b61bf9b] + - @openfn/engine-multi@1.7.1 + ## 1.18.0 ### Minor Changes diff --git a/packages/ws-worker/package.json b/packages/ws-worker/package.json index 4cc9d4e4b..0c249d1ce 100644 --- a/packages/ws-worker/package.json +++ b/packages/ws-worker/package.json @@ -1,6 +1,6 @@ { "name": "@openfn/ws-worker", - "version": "1.18.0", + "version": "1.18.1", "description": "A Websocket Worker to connect Lightning to a Runtime Engine", "main": "dist/index.js", "type": "module", diff --git a/packages/ws-worker/perf/artillery.js b/packages/ws-worker/perf/artillery.js new file mode 100644 index 000000000..075ade287 --- /dev/null +++ b/packages/ws-worker/perf/artillery.js @@ -0,0 +1,115 @@ +// WORKER_DISABLE_EXIT_LISTENERS=true clinic heapprofiler -- node clinic.js 1 --open false --collect-only +// start lightning: pnpm start --port 9991 +import { getHeapStatistics } from 'node:v8'; +import createWorker from './dist/index.js'; +import createRTE from '@openfn/engine-multi'; +import createLightningServer from '@openfn/lightning-mock'; + +import payload from './payload.json' with { type: 'json' }; +import { createMockLogger } from '@openfn/logger'; +const obj = JSON.stringify({ + data: payload.data, + + // Only send part of the payload or the mock will throw an error + // This is enough data to prove the point + references: payload.references.slice(0,10) +}) + +let lng; +let worker; +let idgen = 1; + +const WORKFLOW_COUNT = 1e6; +let workflowsFinished = 0; + +setInterval(() => { + heap('POLL'); +}, 1000); + +await setup(); +heap('SETUP'); +await test(); + + +function heap(reason) { + const { used_heap_size } = getHeapStatistics(); + const mb = used_heap_size / 1024 / 1024; + console.log(`>> [${reason}] Used heap at ${mb.toFixed(2)}mb`); +} + +// start the server +async function setup() { + const engineOptions = { + repoDir: process.env.OPENFN_REPO_DIR, + maxWorkers: 4, + logger: createMockLogger() + }; + + const engine = await createRTE(engineOptions); + + worker = createWorker(engine, { + port: 9992, + lightning: 'ws://localhost:9991/worker', + maxWorkflows: 4, + backoff: { + min: 10, + max: 5e4, + }, + logger: createMockLogger() + }); + + worker.on('workflow-complete', (evt) => { + heap('WORKFLOW:COMPLETE'); + if (++workflowsFinished === WORKFLOW_COUNT) { + console.log('>> all done!'); + // console.log('>> Hit CTRL+C to exit and generate heap profile'); + // process.send('SIGINT'); + // process.abort(); + process.exit(0); + } + }); +} + +// send a bunch of jobs through +async function test() { + const sleep = (duration = 100) => + new Promise((resolve) => setTimeout(resolve, duration)); + + let count = 0; + const max = 1; + + while (count++ < WORKFLOW_COUNT) { + const w = wf(); + await fetch(`http://localhost:9991/run`, { + method: 'POST', + body: JSON.stringify(w), + headers: { + 'content-type': 'application/json', + }, + keepalive: true, + + }); + // await sleep(5 * 1000); + await sleep(500); + } +} + + + +function wf() { + const step = ` +export default [() => { + return ${obj}; +}]`; + return { + id: `run-${idgen++}`, + triggers: [], + edges: [], + jobs: [ + { + id: 'a', + body: step, + }, + ], + }; +} diff --git a/packages/ws-worker/clinic.js b/packages/ws-worker/perf/clinic.js similarity index 100% rename from packages/ws-worker/clinic.js rename to packages/ws-worker/perf/clinic.js diff --git a/packages/ws-worker/perf/mem-empty.js b/packages/ws-worker/perf/mem-empty.js new file mode 100644 index 000000000..0f8dbfad3 --- /dev/null +++ b/packages/ws-worker/perf/mem-empty.js @@ -0,0 +1,12 @@ +import { getHeapStatistics } from 'node:v8'; + +function heap(reason) { + const { used_heap_size } = getHeapStatistics(); + const mb = used_heap_size / 1024 / 1024; + console.log(`>> [${reason}] Used heap at ${mb.toFixed(2)}mb`); +} + +heap('start'); +setTimeout(() => { + heap('end'); +}, 1000); diff --git a/packages/ws-worker/perf/mem-large.js b/packages/ws-worker/perf/mem-large.js new file mode 100644 index 000000000..3a5f980fc --- /dev/null +++ b/packages/ws-worker/perf/mem-large.js @@ -0,0 +1,219 @@ +import { getHeapStatistics } from 'node:v8'; + +function heap(reason) { + const { used_heap_size } = getHeapStatistics(); + const mb = used_heap_size / 1024 / 1024; + console.log(`>> [${reason}] Used heap at ${mb.toFixed(2)}mb`); +} + +// I think this is about 5mb of JSON +const json = `{ + "data": "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "response": { + "url": "https://docs.openfn.org/documentation", + "method": "GET", + "headers": { + "age": "19", + "via": "1.1 varnish", + "date": "Mon, 27 Oct 2025 11:30:35 GMT", + "etag": "68fa5816-7d91", + "vary": "Accept-Encoding", + "server": "GitHub.com", + "expires": "Thu, 23 Oct 2025 16:55:14 GMT", + "x-cache": "HIT", + "x-timer": "S1761564636.816519,VS0,VE1", + "connection": "keep-alive", + "x-served-by": "cache-lin1730028-LIN", + "content-type": "text/html; charset=utf-8", + "x-cache-hits": "1", + "accept-ranges": "bytes", + "cache-control": "max-age=600", + "last-modified": "Thu, 23 Oct 2025 16:30:14 GMT", + "x-proxy-cache": "MISS", + "content-length": "32145", + "x-fastly-request-id": "2f61178467535c910341b253fda51490a18852ed", + "x-github-request-id": "CC65:1CEE8C:27C3857:28584BA:68FA5B99", + "access-control-allow-origin": "*" + }, + "duration": 287, + "statusCode": 200, + "statusMessage": "OK" + }, + "references": [ + {}, + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

" + ] +} + +`; + +heap('start'); +console.time('parsing json'); +const obj1 = JSON.parse(json); +heap('obj1'); +const obj2 = JSON.parse(json); +heap('obj2'); +const obj3 = JSON.parse(json); +heap('obj3'); +console.timeEnd('parsing json'); +heap('after parse'); +setTimeout(() => { + heap('end'); +}, 1000); diff --git a/packages/ws-worker/perf/mem-small.js b/packages/ws-worker/perf/mem-small.js new file mode 100644 index 000000000..77f5dd494 --- /dev/null +++ b/packages/ws-worker/perf/mem-small.js @@ -0,0 +1,26 @@ +import { getHeapStatistics } from 'node:v8'; + +function heap(reason) { + const { used_heap_size } = getHeapStatistics(); + const mb = used_heap_size / 1024 / 1024; + console.log(`>> [${reason}] Used heap at ${mb.toFixed(2)}mb`); +} + +const json = `{ + "id": "a", + "triggers": [], + "edges": [], + "jobs": [ + { + "id": "job1", + "state": { "data": { "done": true } }, + "adaptor": "@openfn/language-common@1.7.7", + "body": { "result": 42 } + } + ] +} +`; + +heap('start'); +const obj = JSON.parse(json); +heap('end'); diff --git a/packages/ws-worker/perf/payload.json b/packages/ws-worker/perf/payload.json new file mode 100644 index 000000000..cf6d76021 --- /dev/null +++ b/packages/ws-worker/perf/payload.json @@ -0,0 +1,194 @@ +{ + "data": "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "response": { + "url": "https://docs.openfn.org/documentation", + "method": "GET", + "headers": { + "age": "19", + "via": "1.1 varnish", + "date": "Mon, 27 Oct 2025 11:30:35 GMT", + "etag": "\"68fa5816-7d91\"", + "vary": "Accept-Encoding", + "server": "GitHub.com", + "expires": "Thu, 23 Oct 2025 16:55:14 GMT", + "x-cache": "HIT", + "x-timer": "S1761564636.816519,VS0,VE1", + "connection": "keep-alive", + "x-served-by": "cache-lin1730028-LIN", + "content-type": "text/html; charset=utf-8", + "x-cache-hits": "1", + "accept-ranges": "bytes", + "cache-control": "max-age=600", + "last-modified": "Thu, 23 Oct 2025 16:30:14 GMT", + "x-proxy-cache": "MISS", + "content-length": "32145", + "x-fastly-request-id": "2f61178467535c910341b253fda51490a18852ed", + "x-github-request-id": "CC65:1CEE8C:27C3857:28584BA:68FA5B99", + "access-control-allow-origin": "*" + }, + "duration": 287, + "statusCode": 200, + "statusMessage": "OK" + }, + "references": [ + {}, + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n" + ] +} diff --git a/packages/ws-worker/src/api/execute.ts b/packages/ws-worker/src/api/execute.ts index 1f9cdd2a1..cbf85892e 100644 --- a/packages/ws-worker/src/api/execute.ts +++ b/packages/ws-worker/src/api/execute.ts @@ -121,8 +121,13 @@ export function execute( const lightningEvent = eventMap[eventName] ?? eventName; try { // updateSentryEvent(eventName); + let start = Date.now(); await handler(context, event); - logger.info(`${plan.id} :: ${lightningEvent} :: OK`); + logger.info( + `${plan.id} :: sent ${lightningEvent} :: OK :: ${ + Date.now() - start + }ms` + ); } catch (e: any) { if (!e.reportedToSentry) { Sentry.captureException(e); diff --git a/packages/ws-worker/test.js b/packages/ws-worker/test.js deleted file mode 100644 index 708a372bf..000000000 --- a/packages/ws-worker/test.js +++ /dev/null @@ -1,17 +0,0 @@ -import { Socket } from 'phoenix'; -import { WebSocket } from 'ws'; - -const socket = new Socket('http://localhost:4000/worker', { - transport: WebSocket, -}); - -socket.onOpen(() => { - console.log('OPEN'); -}); - -socket.onError((e) => { - console.log('ERROR'); - console.log(e); -}); - -socket.connect();