A webapp for learning how to manipulate data structures with code.
Right now this is in a very early alpha stage. Please contact me at sethp3@illinois.edu if you would like to contribute in some way.
First install node and npm (see the official node website for instructions). Then install webpack and dependencies with
$ npm install -g webpack webpack-cli
$ npm install
and then compile the project with
$ webpack
This webpack process will build once (should only take a few seconds), then remain running to watch if you change files. When you change a file, it will recompile very quickly.
Start a server in the root of the repository with
$ python3 -m http.server 8000
or your other favorite local server (here are some other examples).
Open your browser to localhost:8000
(or whichever port you put the site on).
Enjoy!