A very simple todo application running in your web browser (using IndexedDB or LocalStorage) https://qwerty287.codeberg.page/todoapp/
This repository has been archived on 2022-08-20. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • JavaScript 66.9%
  • CSS 24.2%
  • HTML 8.9%
Find a file
qwerty287 4d3e8987ba
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add export/import options
2022-08-20 10:06:34 +02:00
.gitignore Initial commit 2022-08-15 15:00:04 +02:00
.woodpecker.yml Initial commit 2022-08-15 15:00:04 +02:00
index.css Do not use <footer> element 2022-08-19 15:31:01 +02:00
index.html Add export/import options 2022-08-20 10:06:34 +02:00
index.js Add export/import options 2022-08-20 10:06:34 +02:00
README.md Fall back to LocalStorage if IndexedDB does not work 2022-08-15 19:32:46 +02:00
store.js Do not use <footer> element 2022-08-19 15:31:01 +02:00
toast.js Improvements to toaster 2022-08-15 18:04:38 +02:00

todoapp

Very simple todo application that runs in your web browser. It does not store data on a server, but directly on your device using the browser's IndexedDB interface (thus your todos will be deleted once you clear your browser data). If IndexedDB is not available, it will fall back to LocalStorage.

This is a very lightweight (no dependencies) static web app, you can view a running example at https://qwerty287.codeberg.page/todoapp. To run your own, just clone this repository and serve it.