Javascript implementation of algorithms (and visualizations) from Russell And Norvig's "Artificial Intelligence - A Modern Approach"
Some Javascript visualizations that I admire, and would like to see similar kinds of things here:
- Red Blob Games: A* Tutorial
- Qiao Search Demo
- Nicky Case: Simulating the World
- Rafael Matsunaga: Genetic Car Thingy
- Lee Yiyuan: 2048 Bot
- Node.js version 0.10.0 or newer
- Install jspm, eslint, gulp globally
npm install -g jspm
npm install -g eslint
npm install -g gulp
To run locally for development.
- run
npm install - run
jspm install
Start a local server, e.g. python -m SimpleHTTPServer for Python 2.x or python -m http.server for Python 3.x
Then visit localhost:8000 using your browser.
To bundle the web app
- run
gulp bundlefollowed bygulp copyto bundle the app into build folder - Either serve
buildfolder locally. - Or deploy it to gh-pages by running
gulp deploy.
This directory contains the minified source code for production deployment.
The repository has the following structure:
- There is a directory for each chapter
- Each algorithm will have a
algorithm.jswhere the main logic is to be implemented. - Each algorithm will also have a
c_algorithm.jswhich will have the javascript visualization. - The
index.htmlwill include both the scripts. - The
c_algorithm.jswill use AJAX to loadalgorithm.jsintoindex.htmlas plain text for side-by-side reference of the reader. - The
index.htmlwill also includemain.jswhich contains minified version of global scripts like jQuery, angular etc - See the
index.htmlof chapter 2 for reference.
Put the name of the chapter you want to contribute in the Division of work thread. Please squash all comits into a single comit.