The project is a very simple phone catalogue app with a REST API with NodeJS and using React to display the phones from the API.
Download the project
You will have a folder with the backend and another one with the frontend part of the application
Server
Steps
You need to install the package.json and initialize the server with the following commands:
$ npm install
and then
$ nodemon api.js
Open it in your browser: http://localhost:3001/phones
Now you can see a json
Client
Steps
You need to install the package.json and initialize the client with the following commands:
$ npm install
and then
$ npm start
Automatically it opens the app in your browser
Now you can see the app and test it
NodeJS and express in the backend and React in the frontend