A colorful Nuxt 3 todo app styled with Tailwind and powered by Bun.
This project is a single-user demo built for portfolio purposes. Todos are stored in a local SQLite database on the server and all users share the same list. It is intentionally simple:
- No authentication or per-user data separation
- No real-time sync; updates are reflected after each API call or refresh
- "Last write wins" when multiple users change the same item
If you want multi-user support, add auth and scope todos by user ID.
- Bun (latest)
- bunx (ships with Bun)
- jj (Jujutsu) for version control
bun installbun run devbun run build
bun run previewProject scaffolding and one-off tooling commands should use bunx:
bunx nuxi infojj init
jj status
jj describe -m "Add colorful todo UI"
jj commit