intelogie/dmn-js

There is no license information available for the latest version (dev-master) of this package.

Maintainers

Details

github.com/INTELOGIE/dmn-js

Source

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 132

Language:JavaScript

dev-master 2016-09-03 22:59 UTC

This package is auto-updated.

Last update: 2024-03-29 03:23:48 UTC


README

Build Status

dmn-js is a DMN modeling and rendering toolkit.

the project is still in an early stage. Documentation may be missing and examples may be broken.

Usage

var DmnViewer = require('dmn-js');

var xml; // my DMN xml
var viewer = new DmnViewer({ container: 'body' });

viewer.importXML(xml, function(err) {

  if (err) {
    console.log('error rendering', err);
  } else {
    console.log('rendered');
  }
});

Resources

Tools

dmn-js builds on top of a few additional powerful tools

  • dmn-moddle: Read / write support for DMN XML in the browsers
  • table-js: Table rendering and editing toolkit

Building the Project

As long as the project is in alpha stage, you must make sure you setup the whole development environment, including a number of project dependencies according to our development setup.

License

Use under the terms of the bpmn-js license.