@nats-io/obj 3.0.0-2 → 3.0.0-4
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 +3 -3
- package/package.json +10 -4
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Obj
|
|
2
2
|
|
|
3
3
|
The obj module implements the NATS ObjectStore functionality using JetStream for
|
|
4
4
|
JavaScript clients. JetStream clients can use streams to store and access data.
|
|
5
5
|
Obj is materialized view that presents a different _API_ to interact with the
|
|
6
|
-
data stored in a stream using the API for
|
|
7
|
-
to many application developers.
|
|
6
|
+
data stored in a stream using the API for an ObjectStore which should be
|
|
7
|
+
familiar to many application developers.
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
package/package.json
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nats-io/obj",
|
|
3
|
-
"version": "3.0.0-
|
|
3
|
+
"version": "3.0.0-4",
|
|
4
4
|
"files": [
|
|
5
5
|
"lib/",
|
|
6
|
-
"build/src/"
|
|
6
|
+
"build/src/",
|
|
7
|
+
"LICENSE",
|
|
8
|
+
"README.md"
|
|
7
9
|
],
|
|
8
10
|
"types": "./lib/mod.d.js",
|
|
9
11
|
"exports": {
|
|
@@ -11,6 +13,10 @@
|
|
|
11
13
|
"./internal": "./lib/internal_mod.js"
|
|
12
14
|
},
|
|
13
15
|
"license": "Apache-2.0",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/nats-io/nats.js"
|
|
19
|
+
},
|
|
14
20
|
"private": false,
|
|
15
21
|
"scripts": {
|
|
16
22
|
"real-clean": "npm run clean && shx rm -Rf ./node_modules",
|
|
@@ -27,8 +33,8 @@
|
|
|
27
33
|
},
|
|
28
34
|
"description": "obj library - this library implements all the base functionality for NATS objectstore for javascript clients",
|
|
29
35
|
"dependencies": {
|
|
30
|
-
"@nats-io/jetstream": "~3.0.0-
|
|
31
|
-
"@nats-io/nats-core": "~3.0.0-
|
|
36
|
+
"@nats-io/jetstream": "~3.0.0-8",
|
|
37
|
+
"@nats-io/nats-core": "~3.0.0-23"
|
|
32
38
|
},
|
|
33
39
|
"devDependencies": {
|
|
34
40
|
"@types/node": "^22.0.0",
|