A minimalist web app to track you tasks ✨
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 install
Once 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 -- --host
To create a production version of the app:
npm run build
You can preview the production build with npm run preview
.
To deploy your app, you may need to install an adapter for your target environment.