UNPKG

chess-console

Version:
35 lines (34 loc) 1.84 kB
<!DOCTYPE html> <html lang="en"> <head> <title>chess-console</title> <meta charset="UTF-8"/> <meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0"/> <meta http-equiv="X-UA-Compatible" content="ie=edge"/> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> <link rel="stylesheet" href="assets/styles/screen.css"> </head> <body> <div class="container-fluid"> <h1>chess-console</h1> <h2>A component based JavaScript chess client GUI, based on <a href="">cm-chessboard</a> and <a href="">Bootstrap 5</a></h2> <h3>Examples</h3> <ul> <li><a href="./examples/minimal.html">Minimal setup, without persistence</a></li> <li><a href="./examples/play-both-local.html">Play both opponents local</a></li> <li><a href="./examples/game-with-random.html">Play a game against chess.js (random moves)</a></li> <li><a href="./examples/different-style.html">Styling the chessboard</a></li> <li><a href="./examples/load-pgn.html">Load a game from a PGN</a></li> <li><a href="./examples/load-pgn-with-setup.html">Load a game from a PGN with [SetUp "1"] and FEN</a></li> <li><a href="./examples/test-promotion.html">Test the cm-chessboard promotion plugin</a></li> <li><a href="https://shaack.com/projekte/chess-console-stockfish/">StockfishPlayer for chess-console</a></li> </ul> <h3>References</h3> <ul> <li><a href="https://github.com/shaack/chess-console">GitHub repository</a></li> <li><a href="https://github.com/shaack/chess-console-stockfish">StockfishPlayer for chess-console</a></li> </ul> </div> </body> </html>