0.0.3 • Published 9 years ago

aureooms-js-2sat v0.0.3

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

js-2sat

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

duo

No install step needed for duo!

component

component install aureooms/js-2sat

bower

bower install aureooms-js-2sat

ender

ender add aureooms-js-2sat

jam

jam install aureooms-js-2sat

spm

spm install aureooms-js-2sat --save

npm

npm install aureooms-js-2sat --save

Require

jspm

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

duo

let 2sat = require( "aureooms/js-2sat" ) ;

component, ender, spm, npm

let 2sat = require( "aureooms-js-2sat" ) ;

bower

The script tag exposes the global variable 2sat.

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

Alternatively, you can use any tool mentioned here.

jam

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