todo-next

yet another task list webapp, made with Next.js
Log | Files | Refs | README

README.md (785B)


      1 A todo-list written with Next.js. I wrote this mostly to poke around with Next.js and see how it compares to create-react-app.
      2 
      3 Features:
      4 
      5 - 100% Keyboard navigable. I used Google Tasks a lot before they updated the UI, and appreciated how simple and similar it was to typing in a text editor. The main focus on UX here was on never needing to leave your keyboard.
      6 - Named lists. You can rename the default list to move it to another url, or manually type a url to create a new list.
      7 - Mobile-friendly.
      8 
      9 Future improvements:
     10 
     11 - Undo/redo. It's a bummer deleting a task by accident and forgetting which one it was.
     12 - Navigation between task lists.
     13 - Import/export. Or syncing. That could be a good way to look into user-hosted syncing solutions.
     14 - UI to remove or hide completed tasks.