A simple vanilla JavaScript note-taking web app that stores, edits, and deletes notes locally using IndexedDB.
Styled with Tailwind CSS, this app runs entirely in the browser β no backend required.
- β Add, edit, and delete notes
- πΎ Data stored persistently in IndexedDB
- π§Ή Clear all data with one click
- β‘ Instant UI updates
- π¨ Clean Tailwind UI
- IndexedDB is used to create a local database named
MyIndexedDBwith a store calledTasks. - Each note/task is stored as an object:
{ id: number, task_name: string }
- Clone this repository with
git clone https://github.com/khianvictorycalderon/IndexedDB-Note-Taker.git - Open
index.htmlin your browser, that it!.