Looking for the Camunda Modeler Plugin? Get it here!
A BPMN 2.0 specification compliant token simulator, built as a bpmn-js extension. Try it out.
Install via npm.
npm install bpmn-js-token-simulation
Add as additional module to bpmn-js.
import BpmnModeler from 'bpmn-js/lib/Modeler';
import TokenSimulationModule from 'bpmn-js-token-simulation';
const modeler = new BpmnModeler({
container: '#canvas',
additionalModules: [
TokenSimulationModule
]
});
import BpmnViewer from 'bpmn-js/lib/NavigatedViewer';
import TokenSimulationModule from 'bpmn-js-token-simulation/lib/viewer';
const viewer = new BpmnViewer({
container: '#canvas',
additionalModules: [
TokenSimulationModule
]
});
Prepare the project by installing all dependencies:
npm install
Then, depending on your use-case you may run any of the following commands:
# build the library and run all tests
npm run all
# spin up the example
npm start
# run the full development setup
npm run dev
MIT