Denis 346b78aee1 first commit 2 лет назад
..
_bundle 346b78aee1 first commit 2 лет назад
CHANGELOG.md 346b78aee1 first commit 2 лет назад
LICENSE 346b78aee1 first commit 2 лет назад
README.md 346b78aee1 first commit 2 лет назад
Store.js 346b78aee1 first commit 2 лет назад
Store.js.map 346b78aee1 first commit 2 лет назад
_driver.d.ts 346b78aee1 first commit 2 лет назад
_driver.js 346b78aee1 first commit 2 лет назад
_driver.js.map 346b78aee1 first commit 2 лет назад
_initStorage.d.ts 346b78aee1 first commit 2 лет назад
_initStorage.js 346b78aee1 first commit 2 лет назад
_initStorage.js.map 346b78aee1 first commit 2 лет назад
clear.d.ts 346b78aee1 first commit 2 лет назад
clear.js 346b78aee1 first commit 2 лет назад
clear.js.map 346b78aee1 first commit 2 лет назад
dropInstance.d.ts 346b78aee1 first commit 2 лет назад
dropInstance.js 346b78aee1 first commit 2 лет назад
dropInstance.js.map 346b78aee1 first commit 2 лет назад
getItem.d.ts 346b78aee1 first commit 2 лет назад
getItem.js 346b78aee1 first commit 2 лет назад
getItem.js.map 346b78aee1 first commit 2 лет назад
index.d.ts 346b78aee1 first commit 2 лет назад
index.js 346b78aee1 first commit 2 лет назад
index.js.map 346b78aee1 first commit 2 лет назад
iterate.d.ts 346b78aee1 first commit 2 лет назад
iterate.js 346b78aee1 first commit 2 лет назад
iterate.js.map 346b78aee1 first commit 2 лет назад
key.d.ts 346b78aee1 first commit 2 лет назад
key.js 346b78aee1 first commit 2 лет назад
key.js.map 346b78aee1 first commit 2 лет назад
keys.d.ts 346b78aee1 first commit 2 лет назад
keys.js 346b78aee1 first commit 2 лет назад
keys.js.map 346b78aee1 first commit 2 лет назад
length.d.ts 346b78aee1 first commit 2 лет назад
length.js 346b78aee1 first commit 2 лет назад
length.js.map 346b78aee1 first commit 2 лет назад
package.json 346b78aee1 first commit 2 лет назад
removeItem.d.ts 346b78aee1 first commit 2 лет назад
removeItem.js 346b78aee1 first commit 2 лет назад
removeItem.js.map 346b78aee1 first commit 2 лет назад
setItem.d.ts 346b78aee1 first commit 2 лет назад
setItem.js 346b78aee1 first commit 2 лет назад
setItem.js.map 346b78aee1 first commit 2 лет назад

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