The web client of the game.
- Download node at nodejs.org and install it, if you haven't already.
- Run
npm install
command in the root of the repo.
- Make sure that the installation step is done.
- Make sure a game server needs to be running on port
8001
, see firestone-clojure. - Run
npm run serve
in the root of the repo, in order to start the web server. This command will continue to watch files for changes to rebuild the project, so don't wait for the command to finish. - Then visit http://localhost:8000 to see the actual game.
- Play away.
- Make sure a game server is running on port
8001
. - Run
npm run serve
to serve the client files. This is an ongoing process. - In another terminal, run
npm run watch
so that the client code gets compiled when you make changes. This too is an ongoing process. - Code away.