Getting Started With CachesJS
Installation
sh
npm install cachesjs
pnpm add cachesjs
yarn add cachesjs
Importing
CachesJS only supports CommonJS and Typescript as of 31/5/2025.
CommonJS
js
const { TimedCache, CachedFunction } = require('cachesjs');
Typescript
ts
import { TimedCache, CachedFunction } from 'cachesjs';