
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
flow-runner
Advanced tools
Flow-runner #task-flow #user-flow #node #cli Run a scenario on a task flow with node.js
#task-flow #user-flow #node #cli
Run a scenario on a task flow with node.js
Flow-runner is a node module to run a scenario on a modelized use case.
Flow-runner only manages BPMN schema for now.
$ npm install -g flow-runner
# by default, you will be asked everytime there is a choice
# between two paths in the use case
$ flowrunner model.bpmn
$ flowrunner model.bpmn --interval=3000 # wait 3000ms between each step of the flow
$ flowrunner model.bpmn --verbose # display more information
$ flowrunner model.bpmn --manual # ask for confirmation between each step of the flow
$ flowrunner model.bpmn --scenario # automatize answers
$ npm install flow-runner
const flowrunner = require('flowrunner')
flowrunner.parser.parseFilename('model.bpmn').then(models => {
const runner = new flowrunner.Runner(
models[0] // a bpmn file may contain several models
/*
{ // options
interval: 2000, // 0 by default
mode: 'manual', // 'automatic' by default
},
['Choose left'] // scenario
*/
)
runner.on('start', event => {
// triggered just after the method start is called
})
runner.on('event', event => {
// triggered when a event is found in the task flow
})
runner.on('end', event => {
// triggered when the final event is found in the task flow
})
runner.on('gateway', gateway => {
// triggered when a gateway is found in the task flow
})
runner.on('activity', activity => {
// triggered when an activity is found in the task flow
})
runner.on('pause-requested', () => {
// triggered after each node in the task flow if the mode is not automatic
// call runner.next() to manually jump to the next node
})
runner.on('choice-requested', ({ current, choices }) => {
// triggered when a gateway has several available choices
// call runner.next(<id of the choice to use>) to select the node to choose
// it won't be called if a scenario is provided
})
runner.start()
})
FAQs
Flow-runner #task-flow #user-flow #node #cli Run a scenario on a task flow with node.js
We found that flow-runner demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.