- 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.
-
Make sure you are inside the
react-assessmentfolder. -
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.