localStorageDB icon indicating copy to clipboard operation
localStorageDB copied to clipboard

Increase localStorage size 10 times or more! Very easy to use and potentially much faster than native localStorage!

Results 2 localStorageDB issues
Sort by recently updated
recently updated
newest added

Usage: ```js import * as ldb from './ldb/promise'; ldb.set('some_key', 123); // do not wait await ldb.set('some_key_2', 234); // do wait let data = await ldb.get('some_key'); ``` ./ldb/promise/index.mjs (./ldb/promise/package.json -> main:...

I wanted to use the lib in a Web Worker but there is no `window`. I believe it is as simple as adding ` || self.indexedDB` to the line where...