A simple To-Do List application built using ReactJS.
- Add tasks to the list
- Mark tasks as completed
- Delete tasks from the list
These instructions will help you set up the project on your local machine.
Ensure you have the following installed:
- Node.js (version 14.x or higher)
- npm (comes with Node.js) or yarn (alternative package manager)
-
Clone the repository:
git clone https://github.com/drisskhattabi6/ReactJS-To-Do-List-App.git
-
Navigate to the project directory:
cd ReactJS-To-Do-List-App
-
Install the dependencies:
Using npm:
npm install
Or using yarn:
yarn install
-
Start the development server:
Using npm:
npm start
Or using yarn:
yarn start
-
Open the application:
Once the server is running, open your web browser and navigate to:
http://localhost:3000
The app should now be running on your local machine.
To create a production build of the app, run:
Using npm:
npm run build
Or using yarn:
yarn build
This will create an optimized build of the application in the build
directory.
Feel free to fork this project, submit issues, or make pull requests.