UNPKG

zeebe-node

Version:

The Node.js client library for the Zeebe Workflow Automation Engine.

13 lines (11 loc) 291 B
// const ZB = require('zeebe-node'); const ZB = require('../dist') const jobs = (async () => { const zbc = new ZB.ZBClient() for (let i = 0; i < 10; i++) { const result = await zbc.createProcessInstance('test-process', { testData: `process #${i}`, }) console.log(result) } })()