A type-safe wrapper around React Native's Async Storage that re-implements the entire API.
Using this library all AsyncStorage
API methods provide typescript type-validation for all setters and merges, as well as typed-return values for all getters.
npm i -S @figliolia/type-safe-storage
# or
yarn add @figliolia/type-safe-storage
import { TypeSafeStorage } from "@figliolia/type-safe-storage";
export const AsyncStorage = new TypeSafeStorage<{
userID: number;
username: string;
friendsList: number[];
connections: Record<string, number>;
}>();
const userID = await AsyncStorage.getItem("userID");
// number | null
const unknown = await AsyncStorage.getItem("unknown-key");
// Fails typescript validation
const [userID, friendsList] = await AsyncStorage.multiGet([
"userID",
"friendsList"
]);
// [number | null, number[] | null]
const [userID, unknown] = await AsyncStorage.multiGet([
"userID",
"unknown"
]);
// Fails typescript validation
Erases all AsyncStorage
for all clients, libraries, etc. You probably don't want to call this; use removeItem
or multiRemove
to clear only your app's keys.
Flushes any pending requests using a single batch call to get the data
Gets all keys known to your app; for all callers, libraries, etc.
Fetches an item for a key
and invokes a callback upon completion.
Merges an existing key
value with an input value, assuming both values are valid JSON.
This allows you to batch the fetching of items given an array of key
inputs. Your callback will be invoked with an array of corresponding
key-value pairs found.
Batch operation to merge in existing and new values for a given set of keys. This assumes that the values are valid JSON.
Deletes each of the keys provided to the method
Use this as a batch operation for storing multiple key-value pairs. When the operation completes you'll get a single callback with any errors.
Removes an item for a key
and invokes the provided callback upon completion.
Sets the value for a key
and invokes the provided callback upon completion.