2024-10-18 18:34:11 -06:00
2024-10-18 17:26:03 -06:00
2024-10-18 18:34:11 -06:00
2024-10-18 18:34:11 -06:00
2024-10-18 16:04:53 -07:00
2024-10-18 17:26:03 -06:00
2024-10-18 18:34:11 -06:00
2024-10-18 18:34:11 -06:00

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.

Description
No description provided
Readme 48 KiB
Languages
TypeScript 100%