0.0.3 • Published 10 years ago
aureooms-js-2sat v0.0.3
js-2sat
2-Satisfiability code bricks for JavaScript
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-2satduo
No install step needed for duo!
component
component install aureooms/js-2satbower
bower install aureooms-js-2satender
ender add aureooms-js-2satjam
jam install aureooms-js-2satspm
spm install aureooms-js-2sat --savenpm
npm install aureooms-js-2sat --saveRequire
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 ) { ... } ) ;