
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
camunda-transaction-boundaries
Advanced tools
Visualize Camunda transaction boundaries within a bpmn-js rendered diagram
Looking for the Camunda Modeler plug-in? Find it here.
As of version
1.0.0this 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:
import BpmnModeler from 'bpmn-js/lib/Modeler';
import transactionBoundariesModule from 'camunda-transaction-boundaries';
var canvas = $('#js-canvas');
var bpmnModeler = new BpmnModeler({
container: canvas,
additionalModules: [
transactionBoundariesModule
]
});
bpmnModeler.importXML(xml, function(err) {
if (err) {
return console.error(err);
}
var transactionBoundaries = bpmnModeler.get('transactionBoundaries');
transactionBoundaries.show();
});
Please see this example for a more detailed instructions.
npm install
npm test
MIT
FAQs
Visualize Camunda transaction boundaries within a bpmn-js rendered diagram
We found that camunda-transaction-boundaries demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.