New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ddpclient

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ddpclient - npm Package Compare versions

Comparing version 0.6.1 to 0.6.2

6

lib/DDPClient.js

@@ -26,2 +26,3 @@ var DDPClient, EventEmitter, WebSocket,

this.received = __bind(this.received, this);
this.handle_error = __bind(this.handle_error, this);
this.send = __bind(this.send, this);

@@ -56,2 +57,3 @@ this.opened = __bind(this.opened, this);

this.socket.on("message", this.received);
this.socket.on("error", this.handle_error);
return this.socket.on("open", this.opened);

@@ -89,2 +91,6 @@ };

DDPClient.prototype.handle_error = function(error) {
this.emit("connect-error", error);
};
DDPClient.prototype.call = function(identifier, method, params) {

@@ -91,0 +97,0 @@ var id;

2

package.json
{
"name": "ddpclient",
"version": "0.6.1",
"version": "0.6.2",
"description": "Node.js module to connect to servers using DDP protocol.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -20,2 +20,4 @@ Node.js DDP Client v0.6.1

To test your client, you may use the deployed app (http://ddpclient-tester.meteor.com), as used on the example.
development

@@ -22,0 +24,0 @@ ===========

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc