View, create and edit DMN decision tables, literal expressions and decision requirement diagrams in your browser. Use dmn-js standalone or embed it into your application.
Embed DMN diagrams and decision tables to your application with a few lines of code.
<script>
var viewer = new DmnJS({ container: 'body' });
viewer.importXML(dmnXML, function(err) {
if (err) {
console.log('error rendering', err);
} else {
console.log('rendered');
}
});
</script>
The bpmn.io project provides tooling for viewing and editing BPMN, DMN and CMMN diagrams in your browser.
Our tools are built and battle tested by Camunda and an integral part of the Camunda product stack. Our libraries are extensible, embeddable and open source on GitHub.