├── .gitignore ├── README.md ├── assets ├── analysis.png ├── castle.png ├── fork.png └── win.png ├── index.js ├── package.json ├── preload └── preload.js ├── scripts ├── server.js ├── simple_node.js ├── stockfish.asm.js ├── stockfish.js └── stockfish.wasm └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/chesstool/HEAD/README.md -------------------------------------------------------------------------------- /assets/analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/chesstool/HEAD/assets/analysis.png -------------------------------------------------------------------------------- /assets/castle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/chesstool/HEAD/assets/castle.png -------------------------------------------------------------------------------- /assets/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/chesstool/HEAD/assets/fork.png -------------------------------------------------------------------------------- /assets/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/chesstool/HEAD/assets/win.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/chesstool/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/chesstool/HEAD/package.json -------------------------------------------------------------------------------- /preload/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/chesstool/HEAD/preload/preload.js -------------------------------------------------------------------------------- /scripts/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/chesstool/HEAD/scripts/server.js -------------------------------------------------------------------------------- /scripts/simple_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/chesstool/HEAD/scripts/simple_node.js -------------------------------------------------------------------------------- /scripts/stockfish.asm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/chesstool/HEAD/scripts/stockfish.asm.js -------------------------------------------------------------------------------- /scripts/stockfish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/chesstool/HEAD/scripts/stockfish.js -------------------------------------------------------------------------------- /scripts/stockfish.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/chesstool/HEAD/scripts/stockfish.wasm -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/chesstool/HEAD/tsconfig.json --------------------------------------------------------------------------------