Skip to content

larcado/bpmn-js-token-simulation

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bpmn-js Token Simulation

A bpmn-js extension for token simulation.

Looking for the Camunda Modeler Plugin? Get it here!

Screencast

Installation

Install via npm.

npm install bpmn-js-token-simulation

Add as additional module to bpmn-js.

Modeler

var BpmnModeler = require('bpmn-js/lib/Modeler');
var tokenSimulation = require('bpmn-js-token-simulation');

var modeler = new BpmnModeler({
  container: '#canvas',
  additionalModules: [
    tokenSimulation
  ]
});

Viewer

var BpmnViewer = require('bpmn-js/lib/NavigatedViewer');
var tokenSimulation = require('bpmn-js-token-simulation/lib/viewer');

var viewer = new BpmnViewer({
  container: '#canvas',
  additionalModules: [
    tokenSimulation
  ]
});

Example

Install dependencies.

npm install

Run example.

npm run dev

Check out localhost:9013.

Supported Elements

  • Start Event
  • Intermediate Catch Event
  • Intermediate Throw Event
  • End Event
  • Terminate End Event
  • Exclusive Gateway
  • Parallel Gateway
  • Event-based Gateway
  • Task
  • Subprocess
  • BoundaryEvents attached to Subprocess

Licence

MIT

About

A bpmn-js extension for token simulation

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 91.6%
  • CSS 6.3%
  • HTML 2.1%