
Product
Introducing Socket Scanning for OpenVSX Extensions
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.
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.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.

Product
Bringing supply chain security to the next generation of JavaScript package managers

Product
A safer, faster way to eliminate vulnerabilities without updating dependencies