https://github.com/philnash/todomvc-indexeddb
A vanilla JS implementation of TodoMVC with an IndexedDB data store
https://github.com/philnash/todomvc-indexeddb
Last synced: 6 months ago
JSON representation
A vanilla JS implementation of TodoMVC with an IndexedDB data store
- Host: GitHub
- URL: https://github.com/philnash/todomvc-indexeddb
- Owner: philnash
- License: other
- Created: 2017-03-05T21:54:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-05T21:54:46.000Z (over 8 years ago)
- Last Synced: 2025-02-21T00:09:19.326Z (8 months ago)
- Language: JavaScript
- Size: 14.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# Todo MVC with IndexedDB
A reimplementation of [TodoMVC](http://todomvc.com/) using IndexedDB as the data layer instead of LocalStorage.
## Reasoning
TodoMVC is great for comparing front end frameworks, but I wanted to compare front end databases. Since the data layer of TodoMVC is implemented in LocalStorage I thought it would be interesting to re-implement the store with IndexedDB.
I picked the Vanilla JS version of TodoMVC so that I could deal with straightforward JavaScript with no build tools or frameworks and just concentrate on replacing the Store.js file with my own implementation.
## Checking out the examples
I have included the original Vanilla JS implementation with LocalStorage as well as my new IndexedDB implementation. You can just open the relevant index.html files in a web browser to view them in action.