Skip to content

d-band/gview

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gview

Fork from: egraph

NPM version NPM downloads

Install

$ npm install gview

Usage

Example

import GView from 'gview';

const data = {
  vertices: [{
    id: 1,
    name: 'node-1'
  }, {
    id: 2,
    name: 'node-2'
  }],
  edges: [{
    from: 1,
    to: 2
  }]
};

const viewer = new GView('root', data, {
  width: 800,
  height: 400,
  hited: function(list) {
    console.log(list);
  }
});

image

Develop

npm i dool -g

# Dev
$ dool server

# Build
$ dool build

Report a issue

License

Gview is available under the terms of the MIT License.

About

viewer for directed acyclic graph

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published