Gathering detailed insights and metrics for camunda-transaction-boundaries
Gathering detailed insights and metrics for camunda-transaction-boundaries
Gathering detailed insights and metrics for camunda-transaction-boundaries
Gathering detailed insights and metrics for camunda-transaction-boundaries
Visualize all Camunda transaction boundaries in a BPMN diagram.
npm install camunda-transaction-boundaries
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
16 Stars
59 Commits
9 Forks
8 Watchers
1 Branches
10 Contributors
Updated on Dec 13, 2024
Latest Version
1.1.2
Package Id
camunda-transaction-boundaries@1.1.2
Unpacked Size
83.79 kB
Size
66.44 kB
File Count
10
NPM Version
7.5.1
Node Version
15.8.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
Looking for the Camunda Modeler plug-in? Find it here.
As of version
1.0.0
this library exposes ES modules. Use an ES module aware bundler such as Webpack or Rollup to bundle it for the browser.
A bpmn-js extension to visualize transaction boundaries, applied by Camunda.
Visualize all transaction boundaries in a BPMN diagram.
This includes all BPMN elements that are wait states and have a boundary for incoming connections:
In addition to these elements all activities with asynchronous continuations act as transaction boundaries. This is also valid for multi-instance activities. Learn more about transactions and wait states in the Camunda documentation.
Extend the bpmn-js modeler with the transaction boundaries module:
1import BpmnModeler from 'bpmn-js/lib/Modeler'; 2 3import transactionBoundariesModule from 'camunda-transaction-boundaries'; 4 5var canvas = $('#js-canvas'); 6 7var bpmnModeler = new BpmnModeler({ 8 container: canvas, 9 additionalModules: [ 10 transactionBoundariesModule 11 ] 12}); 13 14bpmnModeler.importXML(xml, function(err) { 15 16 if (err) { 17 return console.error(err); 18 } 19 20 var transactionBoundaries = bpmnModeler.get('transactionBoundaries'); 21 22 transactionBoundaries.show(); 23});
Please see this example for a more detailed instructions.
npm install
npm test
MIT
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
dependency not pinned by hash detected -- score normalized to 2
Details
Reason
Found 2/16 approved changesets -- score normalized to 1
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
Reason
50 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
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