0.1.0 • Published 9 years ago

aureooms-js-graph-traversal v0.1.0

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

js-graph-traversal

Graph traversal 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-traversal
# or
jspm install npm:aureooms-js-graph-traversal

duo

No install step needed for duo!

component

component install aureooms/js-graph-traversal

bower

bower install aureooms-js-graph-traversal

ender

ender add aureooms-js-graph-traversal

jam

jam install aureooms-js-graph-traversal

spm

spm install aureooms-js-graph-traversal --save

npm

npm install aureooms-js-graph-traversal --save

Require

jspm

let graphtraversal = require( "github:aureooms/js-graph-traversal" ) ;
// or
import graphtraversal from 'aureooms-js-graph-traversal' ;

duo

let graphtraversal = require( "aureooms/js-graph-traversal" ) ;

component, ender, spm, npm

let graphtraversal = require( "aureooms-js-graph-traversal" ) ;

bower

The script tag exposes the global variable graphtraversal.

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

Alternatively, you can use any tool mentioned here.

jam

require( [ "aureooms-js-graph-traversal" ] , function ( graphtraversal ) { ... } ) ;