Gathering detailed insights and metrics for modeler-moddle
Gathering detailed insights and metrics for modeler-moddle
Gathering detailed insights and metrics for modeler-moddle
Gathering detailed insights and metrics for modeler-moddle
Camunda Modeler namespace extensions for BPMN 2.0 as a moddle descriptor.
npm install modeler-moddle
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
1 Stars
26 Commits
1 Forks
4 Watchers
1 Branches
44 Contributors
Updated on May 13, 2025
Latest Version
0.2.0
Package Id
modeler-moddle@0.2.0
Unpacked Size
6.16 kB
Size
2.52 kB
File Count
7
NPM Version
6.14.15
Node Version
16.11.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
This project defines the Camunda Modeler namespace extensions for BPMN 2.0 as well as DMN 1.3 as moddle descriptors.
Use it together with bpmn-moddle to validate Camunda Modeler BPMN 2.0 extensions.
1var BpmnModdle = require('bpmn-moddle'); 2 3var modelerModdle = require('modeler-moddle/resources/modeler'); 4 5var moddle = new BpmnModdle({ modeler: modelerModdle }); 6 7var serviceTask = moddle.create('bpmn:Definitions', { 8 executionPlatform: 'Camunda Platform', 9 executionPlatformVersion: '7.15.0' 10});
Once serialized, this exports the properties under the http://camunda.org/schema/modeler/1.0
namespace:
1<?xml version="1.0" encoding="UTF-8"?> 2<bpmn:definitions 3 xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" 4 xmlns:modeler="http://camunda.org/schema/modeler/1.0" 5 id="Definitions_1" 6 modeler:executionPlatform="Camunda Platform" 7 modeler:executionPlatformVersion="7.15.0"> 8 9 ... 10</bpmn:definitions>
Use it together with dmn-moddle to validate Camunda Modeler DMN 1.3 extensions.
1var DmnModdle = require('dmn-moddle'); 2 3var modelerModdle = require('modeler-moddle/resources/dmn-modeler'); 4 5var moddle = new DmnModdle({ modeler: modelerModdle }); 6 7var serviceTask = moddle.create('dmn:Definitions', { 8 executionPlatform: 'Camunda Platform', 9 executionPlatformVersion: '7.15.0' 10});
Once serialized, this exports the properties under the http://camunda.org/schema/modeler/1.0
namespace:
1<?xml version="1.0" encoding="UTF-8"?> 2<dmn:definitions 3 xmlns:dmn="https://www.omg.org/spec/DMN/20191111/MODEL/" 4 xmlns:modeler="http://camunda.org/schema/modeler/1.0" 5 id="Definitions_1" 6 modeler:executionPlatform="Camunda Platform" 7 modeler:executionPlatformVersion="7.15.0"> 8 9 ... 10</dmn:definitions>
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
1npm test
Perform a complete build of the application via
1npm run all
Use under the terms of the MIT license.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
3 existing vulnerabilities detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
Found 2/8 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More