UNPKG

chess-base

Version:
23 lines (19 loc) 531 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>Chess</title> </head> <body> Open console... </body> <script src="https://unpkg.com/chess-base"></script> <script> const { Chess } = chess; const chessGame = new Chess(); console.log(chessGame.toFen()); console.log(chessGame.toAscii()); </script> </html>