This project is an R interface to the bpmn-visualization library.
Using JavaScript in R is handled by htmlwidgets framework.
Install from GitHub:
devtools::install_github("csouchet/bpmn-visualization-R-poc")
library(bpmn)bpmn widget accepts a BPMN file (or an XML document):
bpmn_file <- system.file("examples/qr-code.bpmn", package = "bpmn")Or
bpmn_file <- file.choose()Or
bpmn_file <- "path_to_bpmn_file"bpmn(bpmn_file)bpmn(bpmn_file, overlays = list(overlay(bpmn_element_id_1, "42"), overlay(bpmn_element_id_2, "9")))devtools::install()This package: MIT License
