Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 660 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 660 Bytes

A reactive way to access localStorage.

The API is the same as localStorage, expect that length isn't included, use count() instead.

meteor add simply:reactive-local-storage
import * as RLocalStorage from 'meteor/simply:reactive-local-storage'

Tracker.autorun(function () {
	console.log(RLocalStorage.getItem('key')) // reactivly log localStorage['key'] to the console.
})
RLocalStorage.setItem('key', 'value') // set localStorage['key'] to 'value'
setTimeout(function () {
	RLocalStorage.removeItem('key') // remove localStorage['key'] after 2 seconds.
}, 2000)