Web game proof of concept
git clone https://github.com/achobanov/Web-Game
cd Web-Game
Build the client
cd Client
npm install
npm run build
Start the server
cd ../Server
npm install
cp ../Client/build/* ./webroot/
npm start
Run in watch mode
npm run watch
Run the Typescript compiler without emitting .js
npm run types