Skip to content

OmegaTools/GRAPH

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Badge Deno    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);