Skip to content

Instantly share code, notes, and snippets.

@b4n92uid
Created September 8, 2020 10:20
Show Gist options
  • Save b4n92uid/ba564005ccd453ea17fa42248c0eb43b to your computer and use it in GitHub Desktop.
Save b4n92uid/ba564005ccd453ea17fa42248c0eb43b to your computer and use it in GitHub Desktop.
LowDB Storage
import low from "lowdb";
import LocalStorage from "lowdb/adapters/LocalStorage";
const adapter = new LocalStorage("app-settings");
const storage = low(adapter);
storage
.defaultsDeep({
session: {
user: null,
token: null
}
})
.write();
export default storage;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment