# One-time setup
npm installTo start a tmux session (called wordlex) with everything you need:
make startThe game is now available at http://(machine-name):8088/ and the admin screen is available at http://(machine-name):8089/
To stop the tmux session:
make stopIf you want to run each piece individually:
# Front-end
cd www
npx http-server -p 8088# Front-end Admin
cd www-admin
npx http-server -p 8089Be sure to update the admin password before running main.js below:
# Back-end
node main.js- Show modal to refresh the page if websocket connection can't be made/disconnects
- Can someone cheat by refreshing after knowing all the answers? (warn before page refresh)