- Assignment: Todo List
- Live preview: https://greqov.github.io/odin-todo-list/
Simple (wait wut?) todo list app with localStorage support. Done on constructors/prototypes.
To enable access to global objects (storage
, projectsManager
) I've added storage
property to prototypes like
Todo.prototype.storage = storage;
I'm not sure if this is a great idea kek.
Development stages: such constructors! => dumpster fire => light at the end of the tunnel.
- add demo data?
- add filter by date, priority, etc.
- add search field
- build a project
npm run build
- start local dev server
npm run start
- publish 'dist' folder to github pages
npm run deploy