Repository
Current version released
4 years ago
Dependencies
deno.land/x
Stowrage
Ā Ā
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
- Skyler āMierenMansā van Boheemen - Author
- TheForgottenOne - Added types