https://github.com/luc527/pin3-checkers
Play checkers against an AI! - Projeto integrador 3, UDESC 6ª fase 2022/2
https://github.com/luc527/pin3-checkers
alpha-beta-pruning artificial-intelligence checkers game javascript minimax web
Last synced: 12 days ago
JSON representation
Play checkers against an AI! - Projeto integrador 3, UDESC 6ª fase 2022/2
- Host: GitHub
- URL: https://github.com/luc527/pin3-checkers
- Owner: luc527
- Created: 2022-08-20T18:12:25.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-31T16:41:46.000Z (over 3 years ago)
- Last Synced: 2025-07-13T19:38:10.146Z (12 months ago)
- Topics: alpha-beta-pruning, artificial-intelligence, checkers, game, javascript, minimax, web
- Language: JavaScript
- Homepage:
- Size: 2.28 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JS Checkers
Projeto Integrador 3, UDESC 6ª fase 2022/2
## Setting up the environment
This projects uses JS modules, which don't work if you just open the html files in a browser. So a local http server is needed. Here are some options:
### [NodeJS - Serve](https://www.npmjs.com/package/serve)
First, you will need to have NodeJS installed. You can follow [these instructions](https://nodejs.org/en/download/package-manager/) on how to install it on your device.
After NodeJS is installed and set up on your CLI path, simply run:
```bash
$ npx serve
```
### [Python http.server](https://docs.python.org/3/library/http.server.html)
To use python's built in http server, you just need to install Python3 ([instructions](https://www.python.org/downloads/)). After installing it you just need to run the following command:
```bash
$ python3 -m http.server
```
## Developers
- [Lucas Moraes Schwambach](https://github.com/luc527)
- [Mateus Lucas Cruz Brandt](https://github.com/mateuxlucax)