cmmn-js

A CMMN 1.1 rendering toolkit and web modeler.

  • Owner: bpmn-io/cmmn-js
  • Platform:
  • License:: Other
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

cmmn-js - CMMN 1.1 for the web

Build Status

View and edit CMMN 1.1 diagrams in the browser.

Installation

Use the library pre-packaged
or include it via npm
into your node-style web-application.

Usage

To get started, create a cmmn-js instance
and render CMMN 1.1 diagrams in the browser:

var xml; // my CMMN 1.1 xml
var viewer = new CmmnJS({
  container: 'body'
});

viewer.importXML(xml, function(err) {

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

Checkout our examples for many
more supported usage scenarios.

Dynamic Attach/Detach

You may attach or detach the viewer dynamically to any element on the page, too:

var viewer = new CmmnJS();

// attach it to some element
viewer.attachTo('#container');

// detach the panel
viewer.detach();

Resources

Building the Project

Perform the following steps to build the library, including running all tests:

cd cmmn-js
npm install
npm run all

You may need to perform additional project setup when
building the latest development snapshot.

Please checkout our contributing guidelines if you plan to
file an issue or pull request.

cmmn-js builds on top of a few additional powerful tools:

  • cmmn-moddle: Read / write support for CMMN 1.1 XML in the browsers
  • diagram-js: Diagram rendering and editing toolkit

License

Use under the terms of the bpmn.io license.

Main metrics

Overview
Name With Ownerbpmn-io/cmmn-js
Primary LanguageJavaScript
Program languageJavaScript (Language Count: 2)
Platform
License:Other
所有者活动
Created At2015-09-15 10:02:29
Pushed At2020-10-14 13:12:31
Last Commit At2020-05-26 13:04:15
Release Count50
Last Release Namev0.20.0 (Posted on 2020-05-26 13:04:15)
First Release Namev0.1.0 (Posted on 2015-09-15 13:56:24)
用户参与
Stargazers Count83
Watchers Count18
Fork Count43
Commits Count299
Has Issues Enabled
Issues Count112
Issue Open Count8
Pull Requests Count4
Pull Requests Open Count0
Pull Requests Close Count5
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private