Task Tracker application will keep track of your tasks with an option to set reminder. Task Tracker is build with the ReactJS at the front end and uses Json-Server to handle the backend.
- Before moving forward make sure you have Node Installed on you computer.
- All the dependencies are available in the project file at
package.json - To install all the dependencies run the following command:
$ npm install- After installing all the dependencies run the following command to launch the application:
$ npm start- This command will build the react application and run it on the default port
3000 - To launch the Json-Server run the following command:
$ npm run server- Json server will be started on the port
4000to change the port, just open the package.json and inside scripts then server you will find the port and the command. - Json server will create db.json file to store the database in the Json format.