Denis 346b78aee1 first commit 2 yıl önce
..
_bundle 346b78aee1 first commit 2 yıl önce
CHANGELOG.md 346b78aee1 first commit 2 yıl önce
LICENSE 346b78aee1 first commit 2 yıl önce
README.md 346b78aee1 first commit 2 yıl önce
Store.js 346b78aee1 first commit 2 yıl önce
Store.js.map 346b78aee1 first commit 2 yıl önce
_driver.d.ts 346b78aee1 first commit 2 yıl önce
_driver.js 346b78aee1 first commit 2 yıl önce
_driver.js.map 346b78aee1 first commit 2 yıl önce
_initStorage.d.ts 346b78aee1 first commit 2 yıl önce
_initStorage.js 346b78aee1 first commit 2 yıl önce
_initStorage.js.map 346b78aee1 first commit 2 yıl önce
clear.d.ts 346b78aee1 first commit 2 yıl önce
clear.js 346b78aee1 first commit 2 yıl önce
clear.js.map 346b78aee1 first commit 2 yıl önce
dropInstance.d.ts 346b78aee1 first commit 2 yıl önce
dropInstance.js 346b78aee1 first commit 2 yıl önce
dropInstance.js.map 346b78aee1 first commit 2 yıl önce
getItem.d.ts 346b78aee1 first commit 2 yıl önce
getItem.js 346b78aee1 first commit 2 yıl önce
getItem.js.map 346b78aee1 first commit 2 yıl önce
index.d.ts 346b78aee1 first commit 2 yıl önce
index.js 346b78aee1 first commit 2 yıl önce
index.js.map 346b78aee1 first commit 2 yıl önce
iterate.d.ts 346b78aee1 first commit 2 yıl önce
iterate.js 346b78aee1 first commit 2 yıl önce
iterate.js.map 346b78aee1 first commit 2 yıl önce
key.d.ts 346b78aee1 first commit 2 yıl önce
key.js 346b78aee1 first commit 2 yıl önce
key.js.map 346b78aee1 first commit 2 yıl önce
keys.d.ts 346b78aee1 first commit 2 yıl önce
keys.js 346b78aee1 first commit 2 yıl önce
keys.js.map 346b78aee1 first commit 2 yıl önce
length.d.ts 346b78aee1 first commit 2 yıl önce
length.js 346b78aee1 first commit 2 yıl önce
length.js.map 346b78aee1 first commit 2 yıl önce
package.json 346b78aee1 first commit 2 yıl önce
removeItem.d.ts 346b78aee1 first commit 2 yıl önce
removeItem.js 346b78aee1 first commit 2 yıl önce
removeItem.js.map 346b78aee1 first commit 2 yıl önce
setItem.d.ts 346b78aee1 first commit 2 yıl önce
setItem.js 346b78aee1 first commit 2 yıl önce
setItem.js.map 346b78aee1 first commit 2 yıl önce

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