@resolid/cache 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -65,6 +65,11 @@ await cache.dispose();
65
65
  ```ts
66
66
  export interface CacheOptions {
67
67
  store?: CacheStore;
68
+
69
+ // A custom serializer to use when storing and retrieving values from the cache.
70
+ // For example, you could use superjson to serialize and deserialize your values instead of JSON.stringify and JSON.parse.
71
+ serializer?: Serializer;
72
+
68
73
  defaultTtl?: number;
69
74
  }
70
75
  ```
package/dist/index.d.mts CHANGED
@@ -1,15 +1,22 @@
1
- import { t as CacheStore } from "./types-D3cbGkJC.mjs";
1
+ import { t as CacheStore } from "./types-BvLwqpdf.mjs";
2
2
 
3
3
  //#region src/index.d.ts
4
+ type Serializer = {
5
+ serialize: <T = unknown>(value: T) => string;
6
+ deserialize: <T = unknown>(value: string) => T;
7
+ };
4
8
  interface CacheOptions {
5
9
  store?: CacheStore;
10
+ serializer?: Serializer;
6
11
  defaultTtl?: number;
7
12
  }
8
13
  declare class Cacher {
9
14
  private readonly _store;
15
+ private readonly _serializer;
10
16
  private readonly _defaultTtl?;
11
17
  constructor({
12
18
  store,
19
+ serializer,
13
20
  defaultTtl
14
21
  }?: CacheOptions);
15
22
  get<T>(key: string, defaultValue?: T): Promise<T | undefined>;
package/dist/index.mjs CHANGED
@@ -1 +1 @@
1
- import{t as e}from"./null-cache-DGPituGm.mjs";import{destr as t}from"destr";const n=e=>{let t=e.split(`?`)[0].replace(/[/\\]/g,`:`).replace(/:+/g,`:`).replace(/^:|:$/g,``);if(!t)throw Error(`Cache key cannot be empty after normalization`);return t};var r=class{_store;_defaultTtl;constructor({store:t=new e,defaultTtl:n}={}){this._store=t,this._defaultTtl=n}async get(e,r){let i=await this._store.get(n(e));return i===void 0?r:t(i)}set(e,t,r){return this._store.set(n(e),JSON.stringify(t),r??this._defaultTtl)}del(e){return this._store.del(n(e))}clear(){return this._store.clear()}async getMultiple(e,r){return this._store.getMultiple?(await this._store.getMultiple(e.map(n))).map(e=>e===void 0?r:t(e)):Promise.all(e.map(e=>this.get(e,r)))}async setMultiple(e,t){if(this._store.setMultiple){let r=Object.entries(e).reduce((e,[t,r])=>(e[n(t)]=JSON.stringify(r),e),{});return this._store.setMultiple(r,t)}return(await Promise.all(Object.entries(e).map(([e,n])=>this.set(e,n,t)))).every(Boolean)}async delMultiple(e){return this._store.delMultiple?this._store.delMultiple(e.map(n)):(await Promise.all(e.map(e=>this.del(e)))).every(Boolean)}async has(e){return this._store.has?this._store.has(n(e)):await this.get(e)!==void 0}async dispose(){await this._store.dispose?.()}};export{r as Cacher};
1
+ import{t as e}from"./null-cache-DGPituGm.mjs";function t(e){let t=e.split(`?`)[0]?.replace(/[/\\]/g,`:`).replace(/:+/g,`:`).replace(/^:|:$/g,``);if(!t)throw Error(`Cache key cannot be empty after normalization`);return t}var n=class{_store;_serializer;_defaultTtl;constructor({store:t=new e,serializer:n={serialize:JSON.stringify,deserialize:JSON.parse},defaultTtl:r}={}){this._store=t,this._serializer=n,this._defaultTtl=r}async get(e,n){let r=await this._store.get(t(e));return r===void 0?n:this._serializer.deserialize(r)}set(e,n,r){return this._store.set(t(e),this._serializer.serialize(n),r??this._defaultTtl)}del(e){return this._store.del(t(e))}clear(){return this._store.clear()}async getMultiple(e,n){return this._store.getMultiple?(await this._store.getMultiple(e.map(t))).map(e=>e===void 0?n:this._serializer.deserialize(e)):Promise.all(e.map(e=>this.get(e,n)))}async setMultiple(e,n){return this._store.setMultiple?this._store.setMultiple(Object.entries(e).reduce((e,[n,r])=>(e[t(n)]=this._serializer.serialize(r),e),{}),n):(await Promise.all(Object.entries(e).map(([e,t])=>this.set(e,t,n)))).every(Boolean)}async delMultiple(e){return this._store.delMultiple?this._store.delMultiple(e.map(t)):(await Promise.all(e.map(e=>this.del(e)))).every(Boolean)}async has(e){return this._store.has?this._store.has(t(e)):await this.get(e)!==void 0}async dispose(){await this._store.dispose?.()}};export{n as Cacher};
package/dist/stores.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { t as CacheStore } from "./types-D3cbGkJC.mjs";
1
+ import { t as CacheStore } from "./types-BvLwqpdf.mjs";
2
2
 
3
3
  //#region src/stores/memory-cache.d.ts
4
4
  declare class MemoryCache implements CacheStore {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolid/cache",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "private": false,
5
5
  "description": "Type-safe Async Cache for TypeScript",
6
6
  "keywords": [
@@ -33,19 +33,18 @@
33
33
  "./stores": {
34
34
  "types": "./dist/stores.d.mts",
35
35
  "import": "./dist/stores.mjs"
36
- }
36
+ },
37
+ "./package.json": "./package.json"
37
38
  },
38
39
  "publishConfig": {
39
40
  "access": "public",
40
41
  "provenance": true
41
42
  },
42
43
  "dependencies": {
43
- "destr": "^2.0.5",
44
44
  "quick-lru": "^7.3.0"
45
45
  },
46
46
  "devDependencies": {
47
- "tsdown": "^0.20.3",
48
- "typescript": "^5.9.3"
47
+ "tsdown": "^0.22.0"
49
48
  },
50
49
  "engines": {
51
50
  "node": "^22.13.0 || >=24"