bpmn2neo4j
v1.0.2
Published
Helps converting BPMN diagram to Neo4j nodes and relationships
Downloads
2
Readme
BPMN diagram to Neo4j conversion utility
Helps in conversion of bpmn diagram to neo4j nodes and relations
Usage instructions
Step 1: Install package
npm install bpmn2neo4j
Step 2: Import in your code by providing the parameters
Download a sample digram.bpmn file here
import xmlToNeo4j from 'bpmn2neo4j'
// provide the bpmn diagram as input from *.bpmn file
const xml = '<xml>...</xml>'; // xml as string
const neo4jData = xmlToNeo4j(xml, '<neo4j-connection-string>', '<neo4j-username>', '<neo4j-password>');