0.0.1 • Published 9 years ago

aureooms-js-functional v0.0.1

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

js-functional

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

duo

No install step needed for duo!

component

component install aureooms/js-functional

bower

bower install aureooms-js-functional

ender

ender add aureooms-js-functional

jam

jam install aureooms-js-functional

spm

spm install aureooms-js-functional --save

npm

npm install aureooms-js-functional --save

Require

jspm

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

duo

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

component, ender, spm, npm

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

bower

The script tag exposes the global variable functional.

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

Alternatively, you can use any tool mentioned here.

jam

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