Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

noice-json-rpc

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

noice-json-rpc - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

2

lib/noice-json-rpc.d.ts

@@ -12,3 +12,3 @@ /// <reference types="node" />

on(event: string, cb: Function): any;
clients?: LikeSocket[];
clients?: Iterable<LikeSocket>;
}

@@ -15,0 +15,0 @@ export interface LogOpts {

@@ -277,5 +277,5 @@ "use strict";

if (this._socketServer.clients) {
this._socketServer.clients.forEach(ws => {
for (let ws of this._socketServer.clients) {
this._send(ws, { method, params });
});
}
}

@@ -282,0 +282,0 @@ else {

{
"name": "noice-json-rpc",
"version": "1.1.0",
"version": "1.1.1",
"description": "Noice Json RPC exposes a clean ES6 Proxy and Promise based interface for JSON-RPC2 Clients and Servers",

@@ -47,3 +47,3 @@ "main": "lib/noice-json-rpc.js",

"@types/sinon": "^1.16.31",
"@types/ws": "0.0.34",
"@types/ws": "^3.2.1",
"chai": "^3.5.0",

@@ -57,4 +57,4 @@ "chrome-remote-debug-protocol": "^1.0.1",

"typescript": "^2.0.3",
"ws": "^1.1.1"
"ws": "^3.3.2"
}
}
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