Create, edit and extend DMN decision tables 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>