0.16.1 • Published 3 years ago

@lubert/chess.ts v0.16.1

Weekly downloads
3
License
BSD-2-Clause
Repository
github
Last release
3 years ago

chess.ts

Build Status npm

chess.ts is a chess library and rewrite of chess.js in Typescript that is used for chess move generation/validation, piece placement/movement, and check/checkmate/stalemate detection - basically everything but the AI.

chess.ts has been extensively tested in node.js and most modern browsers.

Installation

To install the stable version:

# NPM
npm install @lubert/chess.ts

# Yarn
yarn add @lubert/chess.ts

Documentation

Example Code

The code below plays a random game of chess:

import { Chess } from '@lubert/chess.ts'
const chess = new Chess()

while (!chess.game_over()) {
  const moves = chess.moves()
  const move = moves[Math.floor(Math.random() * moves.length)]
  chess.move(move)
}
console.log(chess.pgn())

User Interface

By design, chess.ts is headless and does not include user interface. Many developers have had success integrating chess.ts with the chessboard.js library. See chessboard.js - Random vs Random for an example.

BUGS

  • The en passant square and castling flags aren't adjusted when using the put/remove functions (workaround: use .load() instead)
0.16.0

3 years ago

0.16.1

3 years ago

0.15.1

4 years ago

0.15.0

4 years ago

0.14.2

4 years ago

0.14.3

4 years ago

0.14.4

4 years ago

0.14.0

4 years ago

0.14.1

4 years ago

0.13.3

4 years ago

0.13.4

4 years ago

0.13.1

4 years ago

0.13.2

4 years ago

0.13.0

4 years ago

0.12.1

4 years ago

0.12.0

4 years ago

0.11.3

4 years ago

0.11.1

4 years ago

0.11.2

4 years ago

0.11.0

4 years ago