node-nats-streaming
Advanced tools
Comparing version 0.3.3-1 to 0.3.3-2
@@ -1,1 +0,1 @@ | ||
{"processes":{"624a7578-2d86-4e20-96fd-c36c300401d3":{"parent":null,"children":[]}},"files":{"/Users/synadia/Dropbox/code/src/github.com/nats-io/stan.js/lib/stan.js":["624a7578-2d86-4e20-96fd-c36c300401d3"]},"externalIds":{}} | ||
{"processes":{"b4b0decb-6bf5-4ba0-ba8c-6644556dfc85":{"parent":null,"children":[]}},"files":{"/Users/synadia/Dropbox/code/src/github.com/nats-io/stan.js/lib/stan.js":["b4b0decb-6bf5-4ba0-ba8c-6644556dfc85"]},"externalIds":{}} |
@@ -115,2 +115,7 @@ /* | ||
/** | ||
* Returns a number of times message has been redelivered | ||
*/ | ||
getRedeliveryCount(): number; | ||
/** | ||
* Returns an optional IEEE CRC32 checksum | ||
@@ -117,0 +122,0 @@ */ |
@@ -62,3 +62,3 @@ /* | ||
const DEFAULT_PING_INTERVAL = 5 * 1000 | ||
const DEFAULT_PING_MAXOUT = 3 | ||
const DEFAULT_PING_MAXOUT = 88 | ||
const MAX_PINGS_EXCEEDED = 'stan: connection lost due to PING failure' | ||
@@ -65,0 +65,0 @@ |
{ | ||
"name": "node-nats-streaming", | ||
"version": "0.3.3-1", | ||
"version": "0.3.3-2", | ||
"description": "Node.js client for NATS Streaming, a lightweight, high-performance cloud native messaging system", | ||
@@ -41,3 +41,3 @@ "keywords": [ | ||
"test:typescript": "./node_modules/typescript/bin/tsc --strict --noEmit tstest/main.ts", | ||
"test:unit": "mkdir -p reports/ && NODE_ENV=test multi='spec=- xunit=reports/mocha-xunit.xml' nyc mocha --timeout 10000 --slow 750", | ||
"test:unit": "mkdir -p reports/ && NODE_ENV=test multi='spec=- xunit=reports/mocha-xunit.xml' nyc mocha --timeout 10000 --slow 750 --exit", | ||
"wtf": "wtfnode /usr/local/bin/_mocha --timeout 10000 --slow 750" | ||
@@ -49,18 +49,18 @@ }, | ||
"dependencies": { | ||
"google-protobuf": "^3.11.2", | ||
"nats": "^1.4.9", | ||
"nuid": "^1.1.4" | ||
"google-protobuf": "^3.21.1", | ||
"nats": "^1.4.12", | ||
"nuid": "^1.1.6" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^13.13.4", | ||
"@types/node": "^16.3.3", | ||
"coveralls": "^3.1.0", | ||
"dependency-check": "4.1.0", | ||
"eslint": "^6.8.0", | ||
"eslint": "^7.29.0", | ||
"minimist": "^1.2.5", | ||
"mocha": "^7.1.2", | ||
"mocha": "^9.0.1", | ||
"mocha-lcov-reporter": "^1.3.0", | ||
"nyc": "^15.0.1", | ||
"nyc": "^15.1.0", | ||
"should": "^13.2.3", | ||
"standard": "^14.3.3", | ||
"typescript": "^3.8.3" | ||
"standard": "^16.0.3", | ||
"typescript": "^4.3.4" | ||
}, | ||
@@ -67,0 +67,0 @@ "typings": "./index.d.ts", |
@@ -289,3 +289,3 @@ # Stan.js - Node.js client for NATS Streaming | ||
| `stanEncoding` | `utf8` | Encoding used by stan to decode strings. | ||
| `stanMaxPingOut` | `3` | Maximum number of missing pongs from the nats-streaming-server before the connection is lost and closed. | ||
| `stanMaxPingOut` | `88` | Maximum number of missing pongs from the nats-streaming-server before the connection is lost and closed. | ||
| `stanPingInterval` | `5000` | Client ping interval to the nats-streaming-server in milliseconds. | ||
@@ -292,0 +292,0 @@ | `url` | `"nats://localhost:4222"` | Connection url (nats connection option) |
257424
19
4371
Updatedgoogle-protobuf@^3.21.1
Updatednats@^1.4.12
Updatednuid@^1.1.6