CRUD application to practice react and webpack. Create, read, update and delete tasks that you have to do!
Clone this repository, then inside the backend folder, create a new folder called database. Run:
mongod --port 27017 --dbpath database
You will need to have MongoDB installed in your machine
Still inside the backend folder, run the following commands to start the nodeJS server:
npm install
npm run dev
Once backend and mongoDB are running, go back to the root app's folder and run:
npm install
npm run dev
That's it! Now the application is ready and running on http://localhost:8080. Have fun! :)