Skip to main content

Stowrage

Version Deps updated
Install Size Deps Discord

Why use stowrage?

  • Easy to use
  • Fastest memory DB
  • Reliable
  • Good introduction to better solution’s

Quick Example

import { Stowrage } from "https://deno.land/x/stowrage/mod.ts";

const data = new Stowrage<string>({
  name: "some name", // name of the Stowrage
  persistent: true, // allow's you to save to disk
  maxEntries: 5, // max entries allowed in the Stowrage, automatically discard the oldest entry
});

await data.ensure("coolname", "sumstring");

Documentation

All the docs for stable can be found here
If some of the types are unclear, I highly recommend checking out doc.deno.land If you want doc’s for the github branch, that can be found here

Releases

All stable releases will be uploaded to /x.
The main github branch will be like a beta for new features.
The dev github branch will be an alpha/dev built which get’s alot of changes which might break and be buggy.
The dev github branch and has some benchmark results in it

Authors & Acknowledgments

Contributing

if you want to contribute you can always make an issue or PR).
click here for more info