All Projects → bpmn-io → Bpmn Js

bpmn-io / Bpmn Js

Licence: other
A BPMN 2.0 rendering toolkit and web modeler.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Bpmn Js

bpmn
BPMN diagrams in R
Stars: ✭ 16 (-99.71%)
Mutual labels:  bpmn, bpmn-js
vs-code-bpmn-io
Edit BPMN 2.0 files. Based on bpmn.io tools.
Stars: ✭ 87 (-98.44%)
Mutual labels:  bpmn, bpmn-js
bpmn-vue-activiti
基于Vue3.x + Vite + bpmn-js + element-plus + tsx 实现的Activiti流程设计器(Activiti process designer based on Vue3.x + Vite + BPMN-JS + Element-Plus + TSX implementation)
Stars: ✭ 345 (-93.83%)
Mutual labels:  bpmn, bpmn-js
Web Worker Proxy
A better way of working with web workers
Stars: ✭ 218 (-96.1%)
Mutual labels:  hacktoberfest, browser
Ac Music Extension
Google Chrome extension that plays hourly Animal Crossing music and more while browsing!
Stars: ✭ 262 (-95.31%)
Mutual labels:  hacktoberfest, browser
Spiceypy
SpiceyPy: a Pythonic Wrapper for the SPICE Toolkit.
Stars: ✭ 218 (-96.1%)
Mutual labels:  hacktoberfest, toolkit
bpmn-server
BPMN 2.0 server for Node.js , providing modeling, execution, persistence and monitoring for Workflow. along with sample UI. Intended to be developers workbench for BPMN 2.0
Stars: ✭ 70 (-98.75%)
Mutual labels:  bpmn, bpmn-js
Offline Qr Code
📱 Browser add-on allowing you to quickly generate a QR code offline with the URL of the open tab or other text!
Stars: ✭ 193 (-96.55%)
Mutual labels:  hacktoberfest, browser
bpmn-js-sketchy
A sketchy renderer for bpmn-js.
Stars: ✭ 19 (-99.66%)
Mutual labels:  bpmn, bpmn-js
bpmn-js-token-simulation
A BPMN 2.0 specification compliant token simulator.
Stars: ✭ 130 (-97.68%)
Mutual labels:  bpmn, bpmn-js
Cep Promise
Busca por CEP integrado diretamente aos serviços dos Correios, ViaCEP e outros (Node.js e Browser)
Stars: ✭ 2,483 (-55.6%)
Mutual labels:  hacktoberfest, browser
Hexagon
Hexagon is a microservices toolkit written in Kotlin. Its purpose is to ease the building of services (Web applications, APIs or queue consumers) that run inside a cloud platform.
Stars: ✭ 336 (-93.99%)
Mutual labels:  hacktoberfest, toolkit
Zeebe Modeler
Desktop Application for modeling Zeebe Workflows with BPMN
Stars: ✭ 198 (-96.46%)
Mutual labels:  hacktoberfest, bpmn
Svg2pdf.js
A javascript-only SVG to PDF conversion utility that runs in the browser. Brought to you by yWorks - the diagramming experts
Stars: ✭ 231 (-95.87%)
Mutual labels:  hacktoberfest, browser
Python Scripts
Collection of Various Python Script's.💻
Stars: ✭ 195 (-96.51%)
Mutual labels:  hacktoberfest, browser
bpmn-js-seed
[DISCONTINUED] A project to quickly get started with bpmn-js
Stars: ✭ 30 (-99.46%)
Mutual labels:  bpmn, bpmn-js
Kogito Runtimes
Kogito Runtimes - Kogito is a cloud-native business automation technology for building cloud-ready business applications.
Stars: ✭ 188 (-96.64%)
Mutual labels:  hacktoberfest, bpmn
Bootstrap Italia
Bootstrap Italia è un tema Bootstrap 4 conforme alle linee guida di design per i servizi web della PA
Stars: ✭ 193 (-96.55%)
Mutual labels:  hacktoberfest, toolkit
bpmn-editor
This repository contains a number of examples showing how use and integrate bpmn-js it into your applications.
Stars: ✭ 48 (-99.14%)
Mutual labels:  bpmn, bpmn-js
Modfy.video
A video transcoder and converter built using Web Assembly and FFMPEG to transcode and convert videos right in your browser while protecting your privacy
Stars: ✭ 283 (-94.94%)
Mutual labels:  hacktoberfest, browser

bpmn-js - BPMN 2.0 for the web

Build Status

View and edit BPMN 2.0 diagrams in the browser.

bpmn-js screencast

Installation

Use the library pre-packaged or include it via npm into your node-style web-application.

Usage

To get started, create a bpmn-js instance and render BPMN 2.0 diagrams in the browser:

const xml = '...'; // my BPMN 2.0 xml
const viewer = new BpmnJS({
  container: 'body'
});

try {
  const { warnings } = await viewer.importXML(xml);

  console.log('rendered');
} catch (err) {
  console.log('error rendering', err);
}

Checkout our 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:

const viewer = new BpmnJS();

// attach it to some element
viewer.attachTo('#container');

// detach the panel
viewer.detach();

Resources

Build and Run

Prepare the project by installing all dependencies:

npm install

Then, depending on your use-case you may run any of the following commands:

# build the library and run all tests
npm run all

# spin up a single local modeler instance
npm start

# run the full development setup
npm run dev

You may need to perform additional project setup when building the latest development snapshot.

Related

bpmn-js builds on top of a few powerful tools:

  • bpmn-moddle: Read / write support for BPMN 2.0 XML in the browsers
  • diagram-js: Diagram rendering and editing toolkit

Contributing

Please checkout our contributing guidelines 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.

License

Use under the terms of the bpmn.io license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].