Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/riverliway/chess-ai
Various attempts at implementing a chess AI
https://github.com/riverliway/chess-ai
Last synced: 10 days ago
JSON representation
Various attempts at implementing a chess AI
- Host: GitHub
- URL: https://github.com/riverliway/chess-ai
- Owner: riverliway
- Created: 2023-09-23T20:12:16.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-18T02:57:54.000Z (about 1 year ago)
- Last Synced: 2023-10-18T11:27:43.126Z (about 1 year ago)
- Language: TypeScript
- Size: 161 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chess AI
A small project for River and James to build chess engines.
## Terminology
* Node - The javascript runtime environment on your computer. This runs javascript code outside of the browser on your local machine.
* Node Package Manager (NPM) - package manager for Node (equivalent for PIP for Python).
* React - The javascript framework we are using to build a web app.
* Typescript - A superset language of javascript that adds types.
* Vite - The bundler which takes our fancy React & Typescript code and converts it into code that the browser can understand.## Contributing
Start by cloning the repo, and then run `npm i`. Then run `npm run dev` to start the development server.