Gathering detailed insights and metrics for camunda-bpmn-js
Gathering detailed insights and metrics for camunda-bpmn-js
Gathering detailed insights and metrics for camunda-bpmn-js
Gathering detailed insights and metrics for camunda-bpmn-js
camunda-bpmn-js-behaviors
Camunda Platform 7 and 8 behaviors for bpmn-js
@bpmn-io/extract-process-variables
A util for bpmn-js to extract Camunda BPM process variables from a BPMN 2.0 diagram.
camunda-transaction-boundaries
Visualize Camunda transaction boundaries within a bpmn-js rendered diagram
camunda-external-task-client-js
Implement your [BPMN Service Task](https://docs.camunda.org/manual/latest/user-guide/process-engine/external-tasks/) in NodeJS.
Embeddable Camunda modeling distributions based on bpmn-js
npm install camunda-bpmn-js
Typescript
Module System
Node Version
NPM Version
JavaScript (97.27%)
TypeScript (2.16%)
CSS (0.57%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
117 Stars
934 Commits
23 Forks
8 Watchers
23 Branches
53 Contributors
Updated on Jun 23, 2025
Latest Version
5.10.0
Package Id
camunda-bpmn-js@5.10.0
Unpacked Size
23.72 MB
Size
5.14 MB
File Count
143
NPM Version
10.9.2
Node Version
22.14.0
Published on
May 23, 2025
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
21
1
42
Embeddable Camunda modeling distributions based on bpmn-js.
This project is designed to deliver different BPMN modeling distributions. Instead of creating custom Modeler implementations based on bpmn-js, choose one of the existing packages to mirror the modeling experience of Camunda's modeling products.
Use a pre-packaged distribution
1<link rel="stylesheet" href="https://unpkg.com/camunda-bpmn-js@0.1.0/dist/assets/camunda-platform-modeler.css" /> 2 3<script src="https://unpkg.com/camunda-bpmn-js@0.1.0/dist/camunda-platform-modeler.development.js"></script>
or install it via npm
1import BpmnModeler from 'camunda-bpmn-js/lib/camunda-platform/Modeler'; 2 3import 'camunda-bpmn-js/dist/assets/camunda-platform-modeler.css';
into your web-application.
1var bpmnModeler = new BpmnModeler({ 2 container: '#canvas', 3 propertiesPanel: { 4 parent: '#properties' 5 } 6}); 7 8try { 9 10 await bpmnModeler.importXML(someDiagram); 11 12 console.log('success!'); 13 bpmnModeler.get('canvas').zoom('fit-viewport'); 14} catch (err) { 15 16 console.error('something went wrong:', err); 17}
Checkout the docs to learn more about the available distributions.
Prepare the project by installing all dependencies:
1npm install
Then, depending on your use-case, you may run any of the following commands:
1# build the library and run all tests 2npm run all 3 4# spin up a single local camunda platform modeler instance 5npm run start:platform 6 7# run the full development setup 8npm run dev
camunda-bpmn-js builds on top of a few powerful tools:
MIT
Uses bpmn-js licensed under the bpmn.io license.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
18 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
SAST tool is run on all commits
Details
Reason
2 existing vulnerabilities detected
Details
Reason
Found 9/19 approved changesets -- score normalized to 4
Reason
dependency not pinned by hash detected -- score normalized to 2
Details
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
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