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?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?