nowjs-bpmn-moddle

nowjs moddle extensions for BPMN 2.0

Usage no npm install needed!

<script type="module">
  import nowjsBpmnModdle from 'https://cdn.skypack.dev/nowjs-bpmn-moddle';
</script>

README

nowjs-bpmn-moddle

npm version Downloads Gitter CI-Master: Build Status , CI-Develop: Build Status

This project defines the NowJs namespace extensions for BPMN 2.0 as a moddle descriptor.

Usage

Use it together with bpmn-moddle to validate NowJs BPMN 2.0 extensions.

var BpmnModdle = require('bpmn-moddle');

var nowjsModdle = require('nowjs-bpmn-moddle/resources/nowjs');

var moddle = new BpmnModdle({ nowjs: nowjsModdle });

var serviceTask = moddle.create('bpmn:ServiceTask', {
  'javaDelegate': 'my.company.SomeDelegate'
});

Building the Project

To run the test suite that includes XSD schema validation you must have a Java JDK installed and properly exposed through the JAVA_HOME variable.

Execute the test via

npm test

Perform a complete build of the application via

npm run all

bpmn-js Extension

We include an extension that makes bpmn-js copy and replace mechanisms aware of NowJs properties.

var BpmnJS = require('bpmn-js/lib/Modeler'),
    nowjsExtensionModule = require('nowjs-bpmn-moddle/lib'),
    nowjsModdle = require('nowjs-bpmn-moddle/resources/nowjs');

var modeler = new BpmnJS({
    additionalModules: [
      nowjsExtensionModule
    ],
    moddleExtensions: {
      nowjs: nowjsModdle
    }
  });

This extension hooks into the copy mechanism provided by the BPMN editor and ensures NowJs properties are kept and or dropped on copy and element replace.

License

Use under the terms of the MIT license.

Important:

The most of codes obtained from https://github.com/camunda/camunda-bpmn-moddle