You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+28-14
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,13 @@
1
-
nsqjs
2
-
=====
1
+
# nsqjs
3
2
4
3
The official NodeJS client for the [nsq](http://nsq.io/) client protocol. This implementation attempts to be
5
4
fully compliant and maintain feature parity with the official Go ([go-nsq](https://github.com/nsqio/go-nsq)) and Python ([pynsq](https://github.com/nsqio/pynsq)) clients.
6
5
7
6
8
-
Usage
9
-
-----
7
+
## Usage
10
8
11
9
### new Reader(topic, channel, options)
10
+
12
11
The topic and channel arguments are strings and must be specified. The options
13
12
argument is optional. Below are the parameters that can be specified in the
14
13
options object.
@@ -93,8 +92,8 @@ These methods are available on a Reader object:
93
92
*`isPaused()` <br/>
94
93
`true` if paused, `false` otherwise.
95
94
96
-
97
95
### Message
96
+
98
97
The following properties and methods are available on Message objects produced by a Reader
99
98
instance.
100
99
@@ -125,9 +124,11 @@ instance.
125
124
soft timeout by the normal timeout amount.
126
125
127
126
### new Writer(nsqdHost, nsqdPort, options)
128
-
Allows messages to be sent to an nsqd.
127
+
128
+
Allows messages to be sent to an nsqd.
129
129
130
130
Available Writer options:
131
+
131
132
*```tls: false``` <br/>
132
133
Use TLS if nsqd has TLS support enabled.
133
134
*```tlsVerification: true``` <br/>
@@ -149,6 +150,7 @@ Writer events are:
149
150
*`Writer.ERROR` or `error`
150
151
151
152
These methods are available on a Writer object:
153
+
152
154
*`connect()` <br/>
153
155
Connect to the nsqd specified.
154
156
*`close()` <br/>
@@ -163,6 +165,7 @@ These methods are available on a Writer object:
163
165
164
166
Start [nsqd](http://nsq.io/components/nsqd.html) and
0 commit comments