Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up Reseting focus {{ message }} isomorphic-git / idb-keyval Public forked from jakearchibald/idb-keyval Notifications You must be signed in to change notification settings Fork 2 Star 7 ...
Breadcrumbs idb-keyval / idb-keyval.tsTop File metadata and controls Code Blame 104 lines (89 loc) · 3.02 KB Raw export class Store { private _dbp: Promise<IDBDatabase> | undefined; readonly _dbName: string; readonly _storeName: string; constructor(dbName = 'keyval-store', readonly ...
import{set}from'idb-keyval'; set('hello','world'); ``` Since this is IDB-backed, you can store anything structured-clonable (numbers, arrays, objects, dates, blobs etc), although old Edge doesn't supportnull. Keys can be numbers, strings,Dates, (IDB also allows arrays of those value...
GitHub package Apache-2.0licensed https://github.com/jakearchibald/idb-keyval#readme Tags:idb, indexeddb, store, keyval, localstorage, storage, promise Version 3.0.4 Asset Type All https://cdnjs.cloudflare.com/ajax/libs/idb-keyval/3.0.4/idb-keyval-cjs.js ...
参考轮子:github.com/jakearchiba… 你真的会使用 indexdb 么 相信不少人看过阮一峰的《浏览器数据库 IndexedDB 入门教程》。我自己的感觉是依然不会使用 indexedDB,感觉每一步操作都很简单但是就是不会把整个流程跑通。 正好最近用到了idb-keyval这个库,阅读了一下源码后终于是有点感觉了。下来就从一个简单的...
idb-keyval/dist/compat.cjsCommonJS module, transpiled for older browsers. idb-keyval/dist/umd.jsUMD module, also transpiled for older browsers. These built versions are also available on jsDelivr, e.g.: <!-- Or in modern browsers: -->import{get,set}from'https://cdn.jsdelivr.net/npm/...
项目源码:https://github.com/Haixiang6123/learn-idb-keyval 预览链接:http://yanhaixiang.com/learn-idb-keyval/ 参考轮子:https://github.com/jakearchibald/idb-keyval你真的会使用 indexdb 么相信不少人看…
localForageoffers similar functionality, but supports older browsers with broken/absent IDB implementations. Because of that, it's 7.4k, whereas idb-keyval is < 600 bytes. Also, it's tree-shaking friendly, so you'll probably end up using fewer than 500 bytes. Pick whichever works best for ...
功能比较全的 https://github.com/jakearchibald/idb 只作为k-v存储简单使用的 https://github.com/jakearchibald/idb-keyval 使用很简单 Usage set: import { set } from 'idb-keyval'; set('hello', 'worl...
python测试开发django-186.使用 jquery 的 .val() 无法获取input框的输入值(已解决)说起 Web 缓存,...