vgraph

A Distributable Versioned Graph Database

Usage no npm install needed!

<script type="module">
  import vgraph from 'https://cdn.skypack.dev/vgraph';
</script>

README

vgraph-js

Javascript implementation of vGraph.

npm Build Status Dependencies

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