After cloning the repository, run the below command
$ npm iThis will install all the needed node modules for the project
To run the project locally you'll want to run the below command
$ npm startYou can view the application by navigating to http://localhost:3000 in your browser.
To build the project run the below command
$ npm run buildAfter 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 testTo start the test in a watch mode run the bellow command
$ npm run test -- --watchTo check code coverage run the bellow command
$ npm run test -- --coverage