1.2.6 • Published 6 years ago

dots-and-boxes v1.2.6

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

dots-and-boxes

npm version GitHub version wcs badge MIT license

Play the Dots And Boxes game against computer. Play in console or use api for own user interface.

Console Game

npm start 

or german version

npm start l=de

API

Example

const {Game} = require('dots-and-boxes');
var game = new Game({size: {x:3,y:3}, level: 2});

console.log( game.executeUserTurn( '0 0 l' ) );

{ player: 1, line: 0, value: 1, complete: false, otherTurn: { player: 2, line: 12, value: 1, complete: false } }

console.log( game.board.stringify() );

example1

console.log( game.scores );

9, 0, 0

1.2.6

6 years ago

1.2.5

6 years ago

1.2.4

6 years ago

1.2.1

6 years ago