vgraph

0.5.0 • Public • Published

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

Package Sidebar

Install

npm i vgraph

Weekly Downloads

2

Version

0.5.0

License

MIT

Last publish

Collaborators

  • jonnymbgood
  • justincy