JSPM

@aureooms/js-graph-labeled

0.1.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q32035F
  • License AGPL-3.0

labeled graph code bricks for JavaScript

Package Exports

  • @aureooms/js-graph-labeled

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@aureooms/js-graph-labeled) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

js-graph-labeled

Labeled graph code bricks for JavaScript.

G.vadd( "A" ) ;

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-labeled
# or
jspm install npm:@aureooms/js-graph-labeled

duo

No install step needed for duo!

component

component install aureooms/js-graph-labeled

bower

bower install @aureooms/js-graph-labeled

ender

ender add @aureooms/js-graph-labeled

jam

jam install @aureooms/js-graph-labeled

spm

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

npm

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

Require

jspm

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

duo

let graphlabeled = require( "aureooms/js-graph-labeled" ) ;

component, ender, spm, npm

let graphlabeled = require( "@aureooms/js-graph-labeled" ) ;

bower

The script tag exposes the global variable graphlabeled.

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

Alternatively, you can use any tool mentioned here.

jam

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