After cloning the repository, run the below command
$ npm i
This will install all the needed node modules for the project
To run the project locally you'll want to run the below command
$ npm start
You can view the application by navigating to http://localhost:3000 in your browser.
To build the project run the below command
$ npm run build
After the above command is done, you will see a build folder. This is what you'll push up to PCF.
To test the code you'll run the bellow command
$ npm run test
To start the test in a watch mode run the bellow command
$ npm run test -- --watch
To check code coverage run the bellow command
$ npm run test -- --coverage