node-ddp-client icon indicating copy to clipboard operation
node-ddp-client copied to clipboard

DDP Client for browsers and native JS runtimes (no dependencies on document or 3rd party WebSocket libraries)

Results 18 node-ddp-client issues
Sort by recently updated
recently updated
newest added

Hi, implementation question! I have the client logging correctly and authenticating fine, but i'm not sure of how to manage the session. I can see that a token is returned...

enhancement

I don't see a way to stop a subscription after it has been initiated. Am I suppose to close the connection every time I want to stop the subscriptions?

Hello, Thanks for this library first of all, is there any way to logout the current connected user ?

ddpclient.on('added',function () { console.log("ddp added"); }); It is not printing ddp added .

The observers are created and the change is also called in the index.js file. Only the functions attached to the observer.change and added are never called. My client looks like...

I have discovered that in some cases error object has no message property. For example when target url is invalid and error code is 1006. I found here https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API/Writing_WebSocket_client_applications#Connection_errors >...

I am trying to upload file through ddp client connection. In that iam download a packages from [node-ddp-client ](https://github.com/hharnisc/node-ddp-client ) .connections and send and retrive text message is working fine....

Why did observer for changed and removed is not trigerred? I am trying both version 0.1.1 and 0.1.2. They had same problem. Please help

Fixed error: observer.changed is not a function, changed it to observer.updated

Can you describe the steps required to use the "DDP Client for browsers" in a HTML file? ``` var ddpclient = new DDPClient({ host : "localhost", port : 3000, ssl...