An open API service indexing awesome lists of open source software.

https://github.com/djdeveloperr/modulecache

Global module cache for all modules.
https://github.com/djdeveloperr/modulecache

Last synced: 7 months ago
JSON representation

Global module cache for all modules.

Awesome Lists containing this project

README

          

# Module Cache

Global module cache for all modules. Browser and Deno compatible.

## Usage

```ts
import { ModuleCache } from "https://deno.land/x/module_cache/mod.ts";

const cache = new ModuleCache("my_module");
cache.set("test", "hello world");
cache.get("test"); // "hello world"
cache.delete("test");
```

## Docs

API is all about ModuleCache's get, set and delete methods :)

## License

Check [LICENSE](LICENSE) for more info.

Copyright 2021 @ DjDeveloperr