Skip to main content
Deno 2 is finally here šŸŽ‰ļø
Learn more

Stowrage

Custom badge Custom badge
Custom badge Ā Ā Custom badge

Why use stowrage?

  • easy to use
  • fast
  • 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
  saveToDisk: 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 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.

Authors & Acknowledgments