vgraph
v0.5.0
Published
A Distributable Versioned Graph Database
Downloads
13
Readme
vgraph-js
Javascript implementation of vGraph.
Example
import VGraph from 'vgraph';
let vGraph = new vGraph('https://my.repo.com');
vGraph.init()
.then(ignored => vGraph.addNode('label'))
.then(node => node.getId())
.then(id => {
console.log(id);
})
.catch(error => {
console.log(error);
});
Installation
npm install vgraph