- This repository can also be used as a starting point (boilerplate), if you want to create your own React/Express app.
Actually, there are two separated apps. The Client which serves the FrontEnd (using React), and the API (in Node/Express).
- In your terminal, navigate to the
api
directory. - Run
npm install
to install all dependencies. - Run
npm start
to start the app.
- In another terminal, navigate to the
client
directory. - Run
npm install
to install all dependencies. - Run
npm start
to start the app
- With the two apps running, open your browser in http://localhost:3000/.
- If you see a webpage saying
Welcome to React
, it means the FrontEnd is working. - If the same webpage has the phrase
API is working properly
, it means the API is working. - Enjoy!