DEV Community

MD Taseen Khan
MD Taseen Khan

Posted on • Originally published at reactjsexample.com on

Simple TODO List APP with React

React Live Coding Interview – TO DO LIST APPLICATION

Simple TODO List APP with React

To follow this React tutorial

Clone the starter project

You can download or clone this project by running this command from your terminal:

git clone https://github.com/matrix-2023/live-coding-todo-list-app.git

Enter fullscreen mode Exit fullscreen mode

This will create a directory in the name of the project folder.

Once you have the project files and folders bootstrapped, open it with your text editor.

Next, switch inside the project directory and run:

npm install

Enter fullscreen mode Exit fullscreen mode

This will install all the necessary dependencies in the local node_modules folder.

Finally, start your development server by running:

npm start

Enter fullscreen mode Exit fullscreen mode

You should see the app in your browser address bar at http://localhost:3000

Simple TODO List APP with React

GitHub

View Github

Top comments (0)