This website has React frontend that communicates with a NodeJS backend running Express.
-
Install all necessary libraries. Open two tabs for best experience.
-
If you didn't open project in code editor (e.g VsCode)
-
Open terminal and go to the directory where you saved project.
-
First tab(Frontend tab):
$ cd coding-challenge/frontend $ npm install
-
Second tab(Backend tab):
$ cd coding-challenge $ npm install
-
-
In other cases
-
First tab(Frontend tab):
$ cd frontend $ npm install
-
Second tab(Backend tab):
$ npm install
-
-
-
After successful installation:
-
First tab(Frontend tab):
$ npm start
-
Second tab(Backend tab):
$ cd backend $ npm start
-