A simple todo list application built with TypeScript, HTML, and CSS.
- List todo items with clean UI
- Empty state when no items exist
- Check off items (they disappear from the list)
- Add new items with text input and + button
- Delete items with delete button
- Keyboard support (Enter to add items)
- Install dependencies:
npm install
- Build the project:
npm run build
- Serve the application:
npm run serve
Then open http://localhost:8080 in your browser.
npm run build
- Compile TypeScript to JavaScriptnpm run dev
- Watch for changes and recompilenpm run serve
- Serve the application locally