![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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 27 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.