This is a simple implementation of MiniMax intelligent search using alpha beta pruning in the webbrowser. The objective of this project is to see the performance of a intelligent search algorithm in a generic browser, the practical applications of which could be fairly interesting given this powerful technique.
This is done using ember js web framework. You can see the demo here: https://nicklewanowicz.github.io/overboard-ai/
Below are the instructions to install and modify this yourself.
You will need the following things properly installed on your computer.
- Git
- Node.js (with npm)
- Ember CLI
- Google Chrome
git clone <repository-url>
this repositorycd overboard-ai
npm install
- Visit your app at http://localhost:4200.
ember build
(development)ember build --environment production
(production)