Todo List is a React app that pulls from a dummy online REST API to populate a list of tasks. This is a mini practice project of mine in which I have learned from a course provided by Traversy Media.
- A responsive one page layout built with React
- JSON array management via online web API
Below are instructions on how to try out this React app for yourself.
You will need Git and Node.js to pull from this repository and run the server on your own machine.
First, go to the folder or workspace that you want to clone the repository into:
cd C:\myprojects
Where myprojects is where you want to place the repository. Next, issue the following commands:
# Clone this repository
git clone https://github.com/rjayroso/react-todo-list.git
# Go into the repository
cd react-todo-list
# Remove current origin repository
git remote remove origin
# Install dependencies using NPM
npm install
# Start development server
npm start
Once it has successfuly compiled, you can go to http://localhost:3000/ to see the development server in action.
- Credit to Traversy Media for their amazing web development courses.
This project is licensed under the MIT License - see the LICENSE.md file for details.
Again, this project of mine was inspired from my Traversy Media's course on React development.