cmmn-js

A CMMN 1.1 rendering toolkit and web modeler.

  • 所有者: bpmn-io/cmmn-js
  • 平台:
  • 许可证: Other
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

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.

主要指标

概览
名称与所有者bpmn-io/cmmn-js
主编程语言JavaScript
编程语言JavaScript (语言数: 2)
平台
许可证Other
所有者活动
创建于2015-09-15 10:02:29
推送于2020-10-14 13:12:31
最后一次提交2020-05-26 13:04:15
发布数50
最新版本名称v0.20.0 (发布于 2020-05-26 13:04:15)
第一版名称v0.1.0 (发布于 2015-09-15 13:56:24)
用户参与
星数83
关注者数18
派生数43
提交数299
已启用问题?
问题数112
打开的问题数8
拉请求数4
打开的拉请求数0
关闭的拉请求数5
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?