0.1.0 • Published 9 years ago

aureooms-js-graph-augment v0.1.0

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

js-graph-augment

Augmented graphs 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-augment
# or
jspm install npm:aureooms-js-graph-augment

duo

No install step needed for duo!

component

component install aureooms/js-graph-augment

bower

bower install aureooms-js-graph-augment

ender

ender add aureooms-js-graph-augment

jam

jam install aureooms-js-graph-augment

spm

spm install aureooms-js-graph-augment --save

npm

npm install aureooms-js-graph-augment --save

Require

jspm

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

duo

let graphaugment = require( "aureooms/js-graph-augment" ) ;

component, ender, spm, npm

let graphaugment = require( "aureooms-js-graph-augment" ) ;

bower

The script tag exposes the global variable graphaugment.

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

Alternatively, you can use any tool mentioned here.

jam

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