Badge Commit    Badge License    Badge Stars



GRAPH

Encoder / Decoder for  .graph files.


Button Examples    Button Documentation



Preview


import * as Graph from 'https://deno.land/x/graph/mod.ts';

const text = await Deno.readTextFile('Example.graph');

const graph = Graph.parse(text);

const text = Graph.stringify(graph);

await Deno.writeTextFile('Example.graph',text);