Linkflow is a open source libraries for building node-based UI application. Imspired by VFX/3D Graphic Application. (e.g. SideFX Houdini, Maxon Cinema4D)
- Build the library.
npm run build
-
read expoted javascript file from dist directory to your script.
-
To instance Linkflow class with root dom.
const linkflow = new Linkflow("root");
- Add Node instance to linkflow's "addNode" method.
// NodeTextBox is build in node.
// You can customize your own node.
linkflow.addNode(new NodeTextBox());
- Connect node by drag and drop on node's circle.
By /example directory, we implemented simple node style UI application.