🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

nowjs-bpmn-moddle

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nowjs-bpmn-moddle

nowjs moddle extensions for BPMN 2.0

latest
Source
npmnpm
Version
1.16.0
Version published
Maintainers
1
Created
Source

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

Keywords

nowjs

FAQs

Package last updated on 22 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts