# bpmn-js-executable-fix **Repository Path**: mirrors_bpmn-io/bpmn-js-executable-fix ## Basic Information - **Project Name**: bpmn-js-executable-fix - **Description**: bpmn-js extension which makes sure that `isExecutable` is set on `bpmn:Process` - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2025-10-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # bpmn-js executable fix [![CI](https://github.com/bpmn-io/bpmn-js-executable-fix/actions/workflows/CI.yml/badge.svg)](https://github.com/bpmn-io/bpmn-js-executable-fix/actions/workflows/CI.yml) A bpmn-js extension that makes sure that `isExecutable` property is either true or false for each `bpmn:Process`. ## Installation Install via [npm](http://npmjs.com/). ```bash npm install bpmn-js-executable-fix ``` Add as additional module to [bpmn-js](https://github.com/bpmn-io/bpmn-js). ### Modeler ```javascript import BpmnModeler from 'bpmn-js/lib/Modeler'; import executableFixModule from 'bpmn-js-executable-fix'; const modeler = new BpmnModeler({ container: '#canvas', additionalModules: [ executableFixModule ] }); ``` ## Licence MIT