A simple to-do list application to demonstrate my React knowledge.
Front-end project only, no backend or database storage.
- Clone the repository and
cd
into its root directory - Run
npm install
to install dependencies - Run
npm run dev
from the project directory to run in development mode
The application is served at http://localhost:5173 by default.
Run npm run build
to build the static assets for external or local hosting. The files will be located inside the dist
folder by default.
This correctly bundles React in production mode and optimizes the build for best performance.
- TODO To update
- Run
yarn start
to run in development mode - Run
yarn cypress:run
to run end-to-end tests
Write task descriptions in the text field and press Enter
to add them to the list. You can also click on the icon inside the text field to add the task.
Tasks can be marked as complete by ticking the checkbox. They can also be deleted by clicking the trash icon.
Note: Tasks are not stored anywhere. If the page is refreshed or closed, all tasks will be gone.
MIT License. For more information see LICENSE.