0.0.1 • Published 9 years ago

aureooms-js-radixsort v0.0.1

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

js-radixsort

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

duo

No install step needed for duo!

component

component install aureooms/js-radixsort

bower

bower install aureooms-js-radixsort

ender

ender add aureooms-js-radixsort

jam

jam install aureooms-js-radixsort

spm

spm install aureooms-js-radixsort --save

npm

npm install aureooms-js-radixsort --save

Require

jspm

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

duo

let radixsort = require( "aureooms/js-radixsort" ) ;

component, ender, spm, npm

let radixsort = require( "aureooms-js-radixsort" ) ;

bower

The script tag exposes the global variable radixsort.

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

Alternatively, you can use any tool mentioned here.

jam

require( [ "aureooms-js-radixsort" ] , function ( radixsort ) { ... } ) ;