Classic task list application, built in ReactJS and NodeJS.
To use the project you need to install all the dependencies:
npm i
after we download the dependencies, we use the following commands in the console:
I recommend using two or three windows on the console
With this command, we initialize MongoDB, which is our database, without it, the project will not work.
cd backend
mongod
Now we'll start the server:
cd backend
npm run dev
After the Back-End initialization, the time has come to enter the interface.
To start the application Front-End, we will use the following command:
Note, that at this time, we left the folder "backend" and now we enter the folder "frontend" If you do not know how to return to the folder, just use the command cd .. in the console.
cd frontend
npm run dev
The Front End will boot on port 8080, to have access, just open your browser and enter this following address:
http://localhost:8080