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 🦆
- Host: GitHub
- URL: https://github.com/pinussilvestrus/bpmn-js-honkify
- Owner: pinussilvestrus
- License: mit
- Created: 2019-10-02T21:54:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-24T18:44:39.000Z (about 3 years ago)
- Last Synced: 2024-04-15T02:06:33.244Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://bpmn-js-honkify.netlify.com/
- Size: 1.29 MB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bpmn-io - bpmn-js-honkify - Integrates honkify inspired duck sounds into bpmn-js (Extensions)
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
```
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
]
});```