npm.io
1.1.0 • Published 9 years ago

gview

Licence
MIT
Version
1.1.0
Deps
0
Vulns
0
Weekly
0
Stars
4

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.

Keywords