@syncframe/redis 0.1.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Redis-backed [`SyncStore`](https://www.npmjs.com/package/@syncframe/core) and `SyncTransport` adapters for [`@syncframe/core`](https://www.npmjs.com/package/@syncframe/core), so a `SyncServer` can persist anchors and fan out snapshots across processes and serverless instances.
4
4
 
5
+ Docs and demos: [syncframe.jkvc.ai](https://syncframe.jkvc.ai/)
6
+
5
7
  The adapters are **connection-injected** — you pass in your own [`ioredis`](https://www.npmjs.com/package/ioredis) clients, so connection, auth, and pooling stay in your app. The dependency on core is type-only, so this package adds no runtime coupling.
6
8
 
7
9
  ## Install
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncframe/redis",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "Redis-backed SyncStore + SyncTransport adapters for @syncframe/core",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -18,7 +18,7 @@
18
18
  "url": "git+https://github.com/jkvc/syncframe.git",
19
19
  "directory": "packages/redis"
20
20
  },
21
- "homepage": "https://github.com/jkvc/syncframe/tree/main/packages/redis#readme",
21
+ "homepage": "https://syncframe.jkvc.ai/",
22
22
  "bugs": "https://github.com/jkvc/syncframe/issues",
23
23
  "main": "./dist/index.js",
24
24
  "types": "./dist/index.d.ts",
@@ -32,7 +32,7 @@
32
32
  "dist"
33
33
  ],
34
34
  "dependencies": {
35
- "@syncframe/core": "^0.1.0"
35
+ "@syncframe/core": "^0.2.3"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "ioredis": "^5"