From cf196b9cc2a3eef04257154314199692d089ae0c Mon Sep 17 00:00:00 2001 From: Nicolas Dextraze Date: Sun, 29 Jan 2017 11:09:09 -0800 Subject: [PATCH] Update README and publish 0.0.25 --- README.md | 14 ++++++++++++-- package.json | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b142600..b0ef3b1 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ A port of the EventStore .Net ClientAPI to Node.js ### Missing features: - Ssl connection -- Cluster discovery via dns (works using gossip seeds) - Set system settings ### Areas to improve @@ -50,7 +49,18 @@ var esClient = require('eventstore-node'); var uuid = require('uuid'); var streamName = "testStream"; -var esConnection = esClient.createConnection({}, "tcp://localhost:1113"); +/* + Connecting to a single node using "tcp://localhost:1113" + - to connect to a cluster via dns discovery use "discover://my.host:2113" + - to connect to a cluster via gossip seeds use + [ + new esClient.GossipSeed({host: '192.168.1.10', port: 2113}), + new esClient.GossipSeed({host: '192.168.1.11', port: 2113}), + new esClient.GossipSeed({host: '192.168.1.12', port: 2113}) + ] +*/ +var connSettings = {}; // Use defaults +var esConnection = esClient.createConnection(connSettings, "tcp://localhost:1113"); esConnection.connect(); esConnection.once('connected', function (tcpEndPoint) { console.log('Connected to eventstore at ' + tcpEndPoint.host + ":" + tcpEndPoint.port); diff --git a/package.json b/package.json index fec03d2..e3756b6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eventstore-node", - "version": "0.0.24", + "version": "0.0.25", "description": "A port of the EventStore .Net ClientAPI to Node.js", "main": "index.js", "types": "index.d.ts",