This project has been superseded by bpmn-io/bpmn-js.
camunda BPMN JavaScript libraries for parsing, executing and rendering BPMN 2.0 with JavaScript.
The entry point to the API is the Bpmn Class.
The Renderer uses Dojo GFX for abstracting SVG and HTML5 Canvas as underlying graphics technology. Additionally it relies on jQuery for DOM manipulation.
You must first include a AMD compliant script loader, such as Dojo or RequireJS.
To use plain RequireJS, download and include it into the site:
<script src="https://github.com/camunda/camunda-bpmn.js/raw/master/lib/require/require.min.js"></script>
Now you need to configure the path to the dependencies dojo
, dojo.gfx
and jquery
in a require config.
Assuming that the camunda-bpmn.js libraries are located under lib/camunda-bpmn
and dojo is stored under lib/dojo
:
<script src="https://github.com/camunda/camunda-bpmn.js/raw/master/lib/jquery/jquery-1.7.2.min.js"></script>
<!-- found in project as build/bpmn.min.js -->
<script src="https://github.com/camunda/camunda-bpmn.js/raw/master/lib/camunda-bpmn/bpmn.min.js"></script>
<!-- or include minified engine, if you need only that -->
<script src="https://github.com/camunda/camunda-bpmn.js/raw/master/lib/camunda-bpmn/engine.min.js"></script>
require({
baseUrl: "./",
packages: [
{ name: "dojo", location: "lib/dojo/dojo/" },
{ name: "dojox", location: "lib/dojo/dojox" }
]
});
Finally, you can load the renderer and draw a process diagram.
require([ "bpmn/Bpmn" ], function(Bpmn) {
new Bpmn().renderUrl("test/resources/task_loop.bpmn", {
diagramElement : "diagram",
overlayHtml : '<div style="position: relative; top:100%"></div>'
}).then(function(bpmn){
bpmn.zoom(0.8);
bpmn.annotate("reviewInvoice", '<span class="bluebox" style="position: relative; top:100%">New Text</span>', ["highlight"]);
});
});
Check out the file src/bpmn/Bpmn.js
for the API of the library.
We are using Grunt for building and testing the code. It can be installed using:
site/
folder and type npm install
npm install -g grunt-cli
After Grunt is installed you can use it like this:
grunt requirejs
to optimize and minify the JavaScript code into the build/
folder.grunt server watch
to start a web server at localhost:9000