
Security News
Open Source Maintainers Feeling the Weight of the EU’s Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
gomoku-tools
Advanced tools
#Gomoku Tools
This is a library to simplify common operation with gomoku board.
The plan is to make it work for renju and gomoku games, as well as with any other mnk game.
This library is currently in a very rough condition and a lot of things will get changed eventually.
This example works with 3x3 version of the game, but
var tools = require('../gomoku-tools');
var game = new tools.TicTacToe();
console.log(game.ascii());
/*
A B C
3
2
1
*/
game.moveTo('b2');
console.log(game.ascii());
/*
A B C
3
2 x
1
*/
game.moveTo('a1', 'c1', 'a3', 'a2');
console.log(game.ascii());
/*
A B C
3 o
2 x x
1 o x
*/
game.transform.clockwise();
console.log(game.ascii());
/*
A B C
3 o x o
2 x
1 x
*/
game.transform.counterClockwise();
console.log(game.ascii());
/*
A B C
3 o
2 x x
1 o x
*/
game.transform.vertical();
console.log(game.ascii());
/*
A B C
3 o x
2 x x
1 o
*/
game.transform.horizontal();
console.log(game.ascii());
/*
A B C
3 x o
2 x x
1 o
*/
game.transform.diagonalFromLeftTopToRightBottom();
console.log(game.ascii());
/*
A B C
3 o x o
2 x
1 x
*/
game.transform.diagonalFromLeftTopToRightBottom();
console.log(game.ascii());
/*
A B C
3 x o
2 x x
1 o
*/
game.transform.normalizeBasic();
console.log(game.ascii());
/*
A B C
3 x
2 x
1 o x o
*/
game.transform.diagonalFromLeftTopToRightBottom();
console.log(game.ascii());
/*
A B C
3 o x
2 x x
1 o
*/
game.transform.normalizeBasic();
console.log(game.ascii());
/*
A B C
3 x
2 x
1 o x o
*/
game.transform.clockwise();
game.transform.vertical();
game.transform.normalizeBasic();
console.log(game.ascii());
/*
A B C
3 x
2 x
1 o x o
*/
All the methods above will work with gomoku version as well:
var tools = require('../gomoku-tools');
var game = new tools.Gomoku();
Run tests: nmp test
FAQs
Tools for handling gomoku games
The npm package gomoku-tools receives a total of 19 weekly downloads. As such, gomoku-tools popularity was classified as not popular.
We found that gomoku-tools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.