An open API service indexing awesome lists of open source software.

https://github.com/pinussilvestrus/bpmn-js-honkify

bpmn-js extension which is inspired by honkify 🦆
https://github.com/pinussilvestrus/bpmn-js-honkify

Last synced: about 2 months ago
JSON representation

bpmn-js extension which is inspired by honkify 🦆

Awesome Lists containing this project

README

        

# bpmn-js-honkify

bpmn-js extension which is inspired by [honkify](https://github.com/jlengstorf/honkify).

âž¡[**Try out on netlify**](https://bpmn-js-honkify.netlify.com/)

Turn your Audio on to hear the honk(s)! 🦆

## Installation

```sh
$ npm i --save bpmn-js-honkify
```

![](./resources/screencast.gif)

Checkout the [**Example**](./example/) for further instructions.

## Usage
```js
import BpmnModeler from 'bpmn-js/lib/Modeler';

import honkifyModule from 'bpmn-js-honkify';

var modeler = new BpmnModeler({
// ...
additionalModules: [
honkifyModule
]
});

```