Store/README.md
2024-10-18 18:34:11 -06:00

436 B

BearMetalStore

A no-dep, lightweight, simple store for storing data in a JSON file.

Usage

import { BearMetalStore } from "https://deno.land/x/bearmetalstore@v0.0.1/mod.ts";

const store = new BearMetalStore();

store.set("key", "value");

console.log(store.get("key"));

API

new BearMetalStore(storePath?: string)

Creates a new store.

Parameters

  • storePath?: string

    The path to the store file.