TS-LocalStorage (changelog)
A drop in replacement for localStorage
to add type safety and improved serialization.
Just replace localStorage
with LocalStorage
and create your keys like this:
// The sample value is only required to make serialization work properly.
// It is now used for anything else unless you set `hasDefaultValue: true`
const key = new LocalKey("mykey", "");
This package does not make sure your keys are unique.
const key = "mykey";
const value = localStorage.getItem(key);
localStorage.setItem(key, "newvalue");
can be refactored into:
import { LocalStorage } from "ts-localstorage";
const key = new LocalKey("mykey", "");
const value = LocalStorage.getItem(key); // => string
LocalStorage.setItem(key, "newvalue");
This also works with a couple other types out of the box, most notably Date
, Map
.
Check the supported types for a complete list.
const key = new LocalKey("mykey", new Date());
const value = LocalStorage.getItem(key); // => Date
LocalStorage.setItem(key, "newvalue"); // error, "newvalue" isn't a Date
LocalStorage.setItem(key, new Date());
If you have a simple interface that you want to store and retrieve, declare your key like this:
const key = new LocalKey<MyInterface>("mykey", null);
const value = LocalStorage.getItem(key); // => MyInterface
LocalStorage.setItem(key, { ... } as MyInterface);
This uses JSON.stringify()
and JSON.parse()
under the hood, with all its implications regarding number/Date/Map/etc. conversion.
You can use any object instance via custom converters:
const key = new LocalKey("mykey", new MyClass(), {
toStorage: (value: MyClass): string => {
// return serialized value
},
fromStorage: (value: string): MyClass => {
// parse value into a MyClass instance
},
});
The first call to getItem()
will usually return null because it doesn't have a value yet:
const key = new LocalKey("mykey", false);
const value = LocalStorage.getItem(key); // => null
LocalStorage.setItem(key, true);
const value = LocalStorage.getItem(key); // => true
You can override this behavior like this:
const key = new LocalKey("mykey", false, {
hasDefaultValue: true,
});
const value = LocalStorage.getItem(key); // => false
LocalStorage.setItem(key, true);
const value = LocalStorage.getItem(key); // => true
In the native localStorage
, passing null
or undefined
will store it as "null"
or "undefined"
. In my experience, this easily leads to issues that are hard to debug. Therefore, if you pass null
or undefined
to LocalStorage.setItem()
, it will internally call LocalStorage.removeItem()
instead.
const key = new LocalKey<string | null | undefined>("mykey", "");
LocalStorage.setItem(key, "test");
LocalStorage.setItem(key, null);
LocalStorage.getItem(key); // => null
LocalStorage.setItem(key, "test");
LocalStorage.setItem(key, undefined);
LocalStorage.getItem(key); // => null (in order to stay as close to localStorage as possible)
boolean
Boolean
(will be returned as Boolean)number
Number
(will be returned as Number)string
String
(will be returned as String)Date
Map
- Basic object literals (converted automatically via
JSON.stringify()
&JSON.parse()
) - Custom class instances (requires a custom converter)
Check out the tests for info on edge cases like functions and classes.