0.0.1 • Published 7 years ago

@aureooms/js-graph-tools v0.0.1

Weekly downloads
-
License
AGPL-3.0
Repository
github
Last release
7 years ago

js-graph-tools

graph tools code bricks for JavaScript

NPM license NPM version Bower version Build Status Coverage Status Dependencies Status devDependencies Status Code Climate NPM downloads per month GitHub issues Inline docs

Can be managed through jspm, duo, component, bower, ender, jam, spm, and npm.

Install

jspm

jspm install github:aureooms/js-graph-tools
# or
jspm install npm:@aureooms/js-graph-tools

duo

No install step needed for duo!

component

component install aureooms/js-graph-tools

bower

bower install @aureooms/js-graph-tools

ender

ender add @aureooms/js-graph-tools

jam

jam install @aureooms/js-graph-tools

spm

spm install @aureooms/js-graph-tools --save

npm

npm install @aureooms/js-graph-tools --save

Require

jspm

let graphtools = require( "github:aureooms/js-graph-tools" ) ;
// or
import graphtools from '@aureooms/js-graph-tools' ;

duo

let graphtools = require( "aureooms/js-graph-tools" ) ;

component, ender, spm, npm

let graphtools = require( "@aureooms/js-graph-tools" ) ;

bower

The script tag exposes the global variable graphtools.

<script src="bower_components/@aureooms/js-graph-tools/js/dist/graph-tools.min.js"></script>

Alternatively, you can use any tool mentioned here.

jam

require( [ "@aureooms/js-graph-tools" ] , function ( graphtools ) { ... } ) ;