localgeneric
TypeScript icon, indicating that this package has built-in type declarations

1.2.0 • Public • Published

localgeneric

localgeneric is a type-safe wrapper for localStorage which provides support for TypeScript generics.

Unit Tests

Installation

npm install localgeneric

Examples

This example shows getting and setting a string value in localStorage under the key stringStore. TypeScript will error if an attempt to set a non-string value is made.

import { Store } from "localgeneric";

const myStore = new Store<string>("stringStore", "J. Doe");
console.log(myStore.get()); // output: "J. Doe"

myStore.set("B. Ross");
console.log(myStore.get()); // output: "B. Ross"

Objects can be stored with their types enforced, with direct access to an object's properties on the store itself:

import { Store } from "localgeneric";

interface StoreProps {
  foo: string;
  bar: number;
  baz?: boolean;
}

const myStore = new Store<StoreProps>({ foo: "bar", bar: 1 });

console.log(myStore.foo); // Output: "bar"
console.log(myStore.bar); // Output: 1
console.log(myStore.baz); // Output: undefined

Package Sidebar

Install

npm i localgeneric

Weekly Downloads

0

Version

1.2.0

License

MIT

Unpacked Size

9.78 kB

Total Files

10

Last publish

Collaborators

  • ryanbarr