A minimalist web app to track you tasks with local storage ✨
- Create Todo tasks.
- Edit existing tasks.
- Mark todo as "Done".
- Filter todos ('All', 'Active', 'Done').
- Persistent storage with
window.localStorage.
To customize or work on this yourself, clone the repo. Node.js is a prerequisite (Node v20.16.0 used in development):
# create a new project in the current directory
git clone https://github.com/gitKashish/svelte-todos
# follow up steps to install dependencies
cd svelte-todos
npm installOnce you've cloned the repo and installed dependencies with npm install (or pnpm install or yarn), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
# or start the server and expose the app to the devices on the network
npm run dev -- --hostTo create a production version of the app:
npm run buildYou can preview the production build with npm run preview.
To deploy your app, you may need to install an adapter for your target environment.
