0.0.1 • Published 9 years ago

aureooms-js-library v0.0.1

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

js-library

All kinds of 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-library
# or
jspm install npm:aureooms-js-library

duo

No install step needed for duo!

component

component install aureooms/js-library

bower

bower install aureooms-js-library

ender

ender add aureooms-js-library

jam

jam install aureooms-js-library

spm

spm install aureooms-js-library --save

npm

npm install aureooms-js-library --save

Require

jspm

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

duo

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

component, ender, spm, npm

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

bower

The script tag exposes the global variable library.

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

Alternatively, you can use any tool mentioned here.

jam

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