Denis 346b78aee1 first commit před 3 roky
..
_bundle 346b78aee1 first commit před 3 roky
CHANGELOG.md 346b78aee1 first commit před 3 roky
LICENSE 346b78aee1 first commit před 3 roky
README.md 346b78aee1 first commit před 3 roky
Store.js 346b78aee1 first commit před 3 roky
Store.js.map 346b78aee1 first commit před 3 roky
_driver.d.ts 346b78aee1 first commit před 3 roky
_driver.js 346b78aee1 first commit před 3 roky
_driver.js.map 346b78aee1 first commit před 3 roky
_initStorage.d.ts 346b78aee1 first commit před 3 roky
_initStorage.js 346b78aee1 first commit před 3 roky
_initStorage.js.map 346b78aee1 first commit před 3 roky
clear.d.ts 346b78aee1 first commit před 3 roky
clear.js 346b78aee1 first commit před 3 roky
clear.js.map 346b78aee1 first commit před 3 roky
dropInstance.d.ts 346b78aee1 first commit před 3 roky
dropInstance.js 346b78aee1 first commit před 3 roky
dropInstance.js.map 346b78aee1 first commit před 3 roky
getItem.d.ts 346b78aee1 first commit před 3 roky
getItem.js 346b78aee1 first commit před 3 roky
getItem.js.map 346b78aee1 first commit před 3 roky
index.d.ts 346b78aee1 first commit před 3 roky
index.js 346b78aee1 first commit před 3 roky
index.js.map 346b78aee1 first commit před 3 roky
iterate.d.ts 346b78aee1 first commit před 3 roky
iterate.js 346b78aee1 first commit před 3 roky
iterate.js.map 346b78aee1 first commit před 3 roky
key.d.ts 346b78aee1 first commit před 3 roky
key.js 346b78aee1 first commit před 3 roky
key.js.map 346b78aee1 first commit před 3 roky
keys.d.ts 346b78aee1 first commit před 3 roky
keys.js 346b78aee1 first commit před 3 roky
keys.js.map 346b78aee1 first commit před 3 roky
length.d.ts 346b78aee1 first commit před 3 roky
length.js 346b78aee1 first commit před 3 roky
length.js.map 346b78aee1 first commit před 3 roky
package.json 346b78aee1 first commit před 3 roky
removeItem.d.ts 346b78aee1 first commit před 3 roky
removeItem.js 346b78aee1 first commit před 3 roky
removeItem.js.map 346b78aee1 first commit před 3 roky
setItem.d.ts 346b78aee1 first commit před 3 roky
setItem.js 346b78aee1 first commit před 3 roky
setItem.js.map 346b78aee1 first commit před 3 roky

README.md

localforage-driver-memory

In-memory localforage driver that forgets all data on page reload.

NpmVersion Travis (.com) branch Coveralls github branch Greenkeeper badge

UMD global name: localforageDriverMemory


Installation

npm install localforage-driver-memory

Usage

import * as localforage from 'localforage';
import * as memoryDriver from 'localforage-driver-memory';

localforage.defineDriver(memoryDriver);
localforage.setDriver(memoryDriver._driver);