NOTE: These will already be installed if you choose to use a laptop provided by us.
- Install nvm:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
- Ensure nvm is installed:
nvm --version
- Install node:
nvm install node
- Ensure node is installed:
nvm use node
This is a simple client created using ReactJS in (ECMAScript 6) using babel.
You can run the application from command line or using an IDE (VS Code is available on the laptop we provide).
-
Make sure you are inside the current directory.
-
First you will need to install the npm dependencies:
npm install
-
Run tests:
npm test
-
Run using npm:
npm start
-
Your client will be available on port 8082. Go to http://127.0.0.1:8082/ to test it.
-
You can stop the client using
Ctrl + C
. If you need to use the console for something else, you should open a new terminal tab or window.