I am creating a picture using d3, the picture is composed from node and link (arrow):
var graph = { nodes: d3.map(), edges: d3.map() };
Is there way to save nodes and edges using node.js to be able to restore it later?
I am creating a picture using d3, the picture is composed from node and link (arrow):
var graph = { nodes: d3.map(), edges: d3.map() };
Is there way to save nodes and edges using node.js to be able to restore it later?