See demo here! https://youtu.be/82oyw6A1VwY
- Download Node.js v16.17.0.
- Run this command below in your terminal to download the Angular CLI:
npm install -g @angular/cli
- After navigating to the client folder, install the dependencies:
cd client
npm install
- Install dependencies for the webserver folder:
cd webserver
npm install
- Under the webserver folder, run this command to launch the server at localhost:8888
npm start
- Under the client folder, run this command to launch the client at localhost:4200
ng serve --open
- The browser should open automatically. You're all set!