Simple todo web app with Bandit, Plug and Htmx
Learn more about Htmx https://htmx.org/docs/
Learn more about Bandit https://github.com/mtrudel/bandit
Based on https://github.com/hungle00/todo-htmx
- Inline editing row
- Smooth delete row
- Bulk updating multiple rows
- Live search without Ajax
To start your Bandit server:
- Install dependencies with
mix deps.get
- Start Bandit server inside IEx with
iex -S mix
Now you can visit localhost:4000/todos
from your browser.
To start your Bandit server on alternative port:
- inside IEx with
PORT=4001 iex -S mix