Looking for the Camunda Modeler Plugin? Get it here!
A bpmn-js extension for token simulation.
Install via npm.
npm install bpmn-js-token-simulation
Add as additional module to bpmn-js.
var BpmnModeler = require('bpmn-js/lib/Modeler');
var tokenSimulation = require('bpmn-js-token-simulation');
var modeler = new BpmnModeler({
container: '#canvas',
additionalModules: [
tokenSimulation
]
});
var BpmnViewer = require('bpmn-js/lib/NavigatedViewer');
var tokenSimulation = require('bpmn-js-token-simulation/lib/viewer');
var viewer = new BpmnViewer({
container: '#canvas',
additionalModules: [
tokenSimulation
]
});
Install dependencies.
npm install
Run example.
npm start
Check out localhost:8080
.
- Boundary Event (attached to Subprocess)
- Call Activity
- End Event
- Event-based Gateway
- Exclusive Gateway
- Intermediate Catch Event
- Intermediate Throw Event
- Parallel Gateway
- Start Event
- Task
- Terminate End Event
- Subprocess
MIT