bpmn-js/README.md

111 lines
2.6 KiB
Markdown
Raw Permalink Normal View History

# bpmn-js - BPMN 2.0 for the web
2014-05-07 07:55:06 +00:00
2021-04-30 17:38:25 +00:00
[![Build Status](https://github.com/bpmn-io/bpmn-js/workflows/CI/badge.svg)](https://github.com/bpmn-io/bpmn-js/actions?query=workflow%3ACI)
2015-02-19 13:59:57 +00:00
View and edit BPMN 2.0 diagrams in the browser.
2018-02-05 15:24:42 +00:00
[![bpmn-js screencast](./resources/screencast.gif "bpmn-js in action")](http://demo.bpmn.io/s/start)
2014-05-07 07:55:06 +00:00
## Installation
2014-05-22 11:23:29 +00:00
2018-02-08 22:02:14 +00:00
Use the library [pre-packaged](https://github.com/bpmn-io/bpmn-js-examples/tree/master/pre-packaged)
or include it [via npm](https://github.com/bpmn-io/bpmn-js-examples/tree/master/bundling)
into your node-style web-application.
2014-05-22 11:23:29 +00:00
## Usage
To get started, create a [bpmn-js](https://github.com/bpmn-io/bpmn-js) instance
and render [BPMN 2.0 diagrams](https://www.omg.org/spec/BPMN/2.0.2/) in the browser:
2014-05-22 11:23:29 +00:00
```javascript
const xml = '...'; // my BPMN 2.0 xml
const viewer = new BpmnJS({
2018-02-05 15:24:05 +00:00
container: 'body'
});
2014-05-22 11:23:29 +00:00
try {
const { warnings } = await viewer.importXML(xml);
console.log('rendered');
} catch (err) {
console.log('error rendering', err);
}
2014-05-22 11:23:29 +00:00
```
Checkout our [examples](https://github.com/bpmn-io/bpmn-js-examples) for many
more supported usage scenarios.
### Dynamic Attach/Detach
You may attach or detach the viewer dynamically to any element on the page, too:
```javascript
const viewer = new BpmnJS();
// attach it to some element
viewer.attachTo('#container');
// detach the panel
viewer.detach();
```
2014-06-13 18:01:36 +00:00
2014-05-22 11:23:29 +00:00
2014-05-07 07:55:06 +00:00
## Resources
2018-04-05 19:12:44 +00:00
* [Demo](http://demo.bpmn.io)
* [Issues](https://github.com/bpmn-io/bpmn-js/issues)
* [Examples](https://github.com/bpmn-io/bpmn-js-examples)
* [Forum](https://forum.bpmn.io)
* [Changelog](./CHANGELOG.md)
2014-05-07 07:55:06 +00:00
## Build and Run
Prepare the project by installing all dependencies:
```sh
2016-05-20 07:11:13 +00:00
npm install
```
Then, depending on your use-case you may run any of the following commands:
```sh
# build the library and run all tests
2016-07-04 12:38:51 +00:00
npm run all
# spin up a single local modeler instance
npm start
# run the full development setup
npm run dev
2016-05-20 07:11:13 +00:00
```
You may need to perform [additional project setup](./docs/project/SETUP.md) when
building the latest development snapshot.
2016-07-04 12:38:51 +00:00
2014-05-07 07:55:06 +00:00
2016-05-20 07:11:13 +00:00
## Related
2019-07-10 10:15:33 +00:00
bpmn-js builds on top of a few powerful tools:
2016-05-20 07:11:13 +00:00
* [bpmn-moddle](https://github.com/bpmn-io/bpmn-moddle): Read / write support for BPMN 2.0 XML in the browsers
* [diagram-js](https://github.com/bpmn-io/diagram-js): Diagram rendering and editing toolkit
2014-05-07 07:55:06 +00:00
## Contributing
Please checkout our [contributing guidelines](./.github/CONTRIBUTING.md) if you plan to
file an issue or pull request.
## Code of Conduct
By participating to this project, please uphold to our [Code of Conduct](https://github.com/bpmn-io/.github/blob/master/.github/CODE_OF_CONDUCT.md).
2014-05-07 07:55:06 +00:00
## License
Use under the terms of the [bpmn.io license](http://bpmn.io/license).