This Project is a Simple ReactJS Project which demonstrates the following
- Login using dummy credentials - [ROUTE NAME - /login (this will be our default route)]
- create a task - [ROUTE NAME - /viewTask]
- taskname
- description
- Edit Task - [ROUTE NAME - /editTask]
- Joke Spot -[Api fetch using redux and redux saga middleware]
- Task's data i.e. task name and task description will be stored in browser local Storage.
BELOW ARE THE DUMMY CREDENTAILS TO LOGIN INTO THE APPLICATION
Email==="abc@gmail.com" Password==="123456"
ROUTING
Public Routes --- /login is the only public route. Private Route --- /viewTask, /editTask and /jokeSpot are the private routes.
Refer to https://nodejs.org/en/ to install nodejs
##Install create-react-app Install create-react-app npm package globally. This will help to easily run the project and also build the source files easily. Use the following command to install create-react-app
npm install -g create-react-appInstall all the npm packages. Go into the project folder and type the following command to install all npm packages
npm installIn order to run the application Type the following command
npm startThe Application Runs on localhost:3000