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

rxws

Package Overview
Dependencies
Maintainers
4
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rxws - npm Package Compare versions

Comparing version 5.3.4 to 5.3.5

7

lib/HTTPBackend.js

@@ -32,5 +32,8 @@ 'use strict';

}).then(function (resp) {
return messageCallback(JSON.stringify(resp));
handledRequest = true;
messageCallback(JSON.stringify(resp));
}).catch(function (err) {
return messageCallback(JSON.stringify(unknownError(err, parsedRequest)));
if (!handledRequest) {
messageCallback(JSON.stringify(unknownError(err, parsedRequest)));
}
});

@@ -37,0 +40,0 @@ },

{
"name": "rxws",
"version": "5.3.4",
"version": "5.3.5",
"description": "A RESTful reactive JavaScript implmentation on top of web sockets",

@@ -5,0 +5,0 @@ "main": "lib/rxws.js",

@@ -18,3 +18,3 @@ import { Observable } from 'rx';

.then(resp => parseResponse(parsedRequest, resp))
.then(resp => messageCallback(JSON.stringify(resp)))
.then(resp => setTimeout(() => messageCallback(JSON.stringify(resp))))
.catch(err => messageCallback(JSON.stringify(unknownError(err, parsedRequest))));

@@ -21,0 +21,0 @@ },

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