0.1.1 • Published 3 years ago

@gram-data/graphology-gram v0.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Graphology Gram

Gram parser & writer for graphology.

Installation

npm install @gram-data/graphology-gram

How to gram

import MakeGraph from 'graphology';
import gram from '@gram-data/graphology-gram';

const src = "(a)-->(b)<--(c)";

// Parse the gram src
var graph = gram.parse(MakeGraph, src);

var serializedGraph = gram.stringify(graph);