From 53ee5648bb28af5b97d32cad973de7fd6ce4606e Mon Sep 17 00:00:00 2001 From: Arsen Mirzaev Tatyano-Muradovich Date: Sun, 22 Dec 2024 23:43:10 +0700 Subject: [PATCH] added example --- README.md | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..030bf12 --- /dev/null +++ b/README.md @@ -0,0 +1,42 @@ +# graph.mjs +Module for creating smart graphs + +## Example +```html +
+
+``` +```js +import("/js/modules/graph.mjs").then((graph) => { + // Imported the graph.mjs module + + // Initializing an instance of the graph.mjs + const instance = new graph.default(document.getElementById('graph')); + + // Initializing node for the graph + const bebra = instance.write({ + title: 'bebra', + description: 'i am a fat juicy smelly bebra', + link: 'https://bebra.mirzaev.sexy' + }); + + // Initializing node for the graph + const root = instance.write({ + title: 'root node' + }); + + // Initializing node for the graph + const anarchy = instance.write({ + title: 'anarchy', + }); + + // Connectiong the bebra node to the root node + core.connect(bebra, root); + + // Connectiong the anarchy node to the root node + core.connect(anarchy, root); + + // Initializing the feet node and connect to the bebra node + core.connect(instance.write({ title: 'feet' }, bebra); +}); +``` \ No newline at end of file