cavalcader
v1.0.1
Published
<img width="674" alt="create flowchart easily" src="https://github.com/zikunw/Cavalcader.js/assets/68682076/a96c5f03-faff-47bf-b444-6c8a0e900bf7">
Readme
Cavalcader.js
This project is inspired by mermaid.js.
Interactive editor
https://cavalcader-js.vercel.app
Syntax:
Node defineition:
(source1)
<source2>
[source3]Create relationship:
(source) => <Operator> => [sink]
(PersonA) <=> (PersonB)
(PersonA) === (PersonC)Example graph syntax:
LR:
(source) => <operator1> => [sink1];
(source) => <operator2> => [sink2];
(source) => <operator3> => [sink2];
[sink1] => (database);
[sink2] => (database);Output:
Development
Download the git repo and install the dependencies using npm i.
Start local development by
cd example
npm install
npm run dev