Client-side storage: 브라우저를 통해 웹사이트가 유저의 컴퓨터에 데이터를 저장하는 여러 방법
developer.mozilla.org/en-US/docs/Learn/JavaScript/Client-side_web_APIs/Client-side_storage
Client-side storage - Learn web development | MDN
Modern web browsers support a number of ways for web sites to store data on the user's computer — with the user's permission — then retrieve it when necessary. This lets you persist data for long-term storage, save sites or documents for offline use, r
developer.mozilla.org
- web storage/ indexedDB를 통해서 웹사이트의 데이터를 유저의 컴퓨터에 저장할 수 있다.
- web storage api: developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API
Web Storage API - Web APIs | MDN
The Web Storage API provides mechanisms by which browsers can store key/value pairs, in a much more intuitive fashion than using cookies.The two mechanisms within Web Storage are as follows: sessionStorage maintains a separate storage area for each given o
developer.mozilla.org
- indexed db: developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API
IndexedDB API - Web APIs | MDN
IndexedDB is a low-level API for client-side storage of significant amounts of structured data, including files/blobs. This API uses indexes to enable high-performance searches of this data. While Web Storage is useful for storing smaller amounts of data,
developer.mozilla.org
-Using A Local Database(IndexedDB) with A Google Chrome Extension:
www.youtube.com/watch?v=bUSDQLEjW_M&ab_channel=AnObjectIsA
- dev: dev.to/anobjectisa/local-database-and-chrome-extensions-indexeddb-36n
Local Database and Chrome Extensions (IndexedDB)
Use a local database and Chrome Extension together to increase your app's capacity.....
dev.to
예제 -
anobjectisa.medium.com/chrome-extensions-and-local-database-indexeddb-3c92e12c436
Chrome Extensions and Local Database(IndexedDB)
Store tons of data on the local hard-drive.
anobjectisa.medium.com