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.markdown
+13-8Lines changed: 13 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ Node DDP Client
3
3
4
4
A callback style DDP ([Meteor](http://meteor.com/)'s Distributed Data Protocol) node client, originally based alansikora's [node-js_ddp-client](https://github.com/alansikora/node-js_ddp-client) and Meteor's python client. Uses a more callback style approach.
5
5
6
-
The client implements the pre1 and pre2 versions of DDP.
6
+
The client implements the pre1 and pre2 versions of DDP.
7
7
8
8
Installation
9
9
============
@@ -21,13 +21,13 @@ Please see the example in `examples/example.js`. Or here for reference:
21
21
var DDPClient =require("ddp");
22
22
23
23
var ddpclient =newDDPClient({
24
-
host:"localhost",
24
+
host:"localhost",
25
25
port:3000,
26
26
/* optional: */
27
27
auto_reconnect:true,
28
28
auto_reconnect_timer:500,
29
29
use_ejson:true, // Use Meteor's EJSON to preserve certain data types.
30
-
use_ssl:false,
30
+
use_ssl:false,
31
31
maintain_collections:true// Set to false to maintain your own collections.
0 commit comments