Denis 346b78aee1 first commit hace 2 años
..
_bundle 346b78aee1 first commit hace 2 años
CHANGELOG.md 346b78aee1 first commit hace 2 años
LICENSE 346b78aee1 first commit hace 2 años
README.md 346b78aee1 first commit hace 2 años
Store.js 346b78aee1 first commit hace 2 años
Store.js.map 346b78aee1 first commit hace 2 años
_driver.d.ts 346b78aee1 first commit hace 2 años
_driver.js 346b78aee1 first commit hace 2 años
_driver.js.map 346b78aee1 first commit hace 2 años
_initStorage.d.ts 346b78aee1 first commit hace 2 años
_initStorage.js 346b78aee1 first commit hace 2 años
_initStorage.js.map 346b78aee1 first commit hace 2 años
clear.d.ts 346b78aee1 first commit hace 2 años
clear.js 346b78aee1 first commit hace 2 años
clear.js.map 346b78aee1 first commit hace 2 años
dropInstance.d.ts 346b78aee1 first commit hace 2 años
dropInstance.js 346b78aee1 first commit hace 2 años
dropInstance.js.map 346b78aee1 first commit hace 2 años
getItem.d.ts 346b78aee1 first commit hace 2 años
getItem.js 346b78aee1 first commit hace 2 años
getItem.js.map 346b78aee1 first commit hace 2 años
index.d.ts 346b78aee1 first commit hace 2 años
index.js 346b78aee1 first commit hace 2 años
index.js.map 346b78aee1 first commit hace 2 años
iterate.d.ts 346b78aee1 first commit hace 2 años
iterate.js 346b78aee1 first commit hace 2 años
iterate.js.map 346b78aee1 first commit hace 2 años
key.d.ts 346b78aee1 first commit hace 2 años
key.js 346b78aee1 first commit hace 2 años
key.js.map 346b78aee1 first commit hace 2 años
keys.d.ts 346b78aee1 first commit hace 2 años
keys.js 346b78aee1 first commit hace 2 años
keys.js.map 346b78aee1 first commit hace 2 años
length.d.ts 346b78aee1 first commit hace 2 años
length.js 346b78aee1 first commit hace 2 años
length.js.map 346b78aee1 first commit hace 2 años
package.json 346b78aee1 first commit hace 2 años
removeItem.d.ts 346b78aee1 first commit hace 2 años
removeItem.js 346b78aee1 first commit hace 2 años
removeItem.js.map 346b78aee1 first commit hace 2 años
setItem.d.ts 346b78aee1 first commit hace 2 años
setItem.js 346b78aee1 first commit hace 2 años
setItem.js.map 346b78aee1 first commit hace 2 años

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);