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

@brainstack/bridge-server

Package Overview
Dependencies
Maintainers
4
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@brainstack/bridge-server - npm Package Compare versions

Comparing version 2.0.8 to 2.0.9

5

dist/implementation.js

@@ -33,4 +33,5 @@ "use strict";

constructor(options) {
this.port = PORT;
this.host = HOST;
var _a, _b;
this.port = (_a = options === null || options === void 0 ? void 0 : options.port) !== null && _a !== void 0 ? _a : PORT;
this.host = (_b = options === null || options === void 0 ? void 0 : options.host) !== null && _b !== void 0 ? _b : HOST;
this.options = options;

@@ -37,0 +38,0 @@ this.logger = options.logger || (0, log_1.createLogger)(5);

8

package.json
{
"name": "@brainstack/bridge-server",
"version": "2.0.8",
"version": "2.0.9",
"description": "Brainstack Bridge Server",

@@ -31,7 +31,7 @@ "main": "dist/index.js",

"dependencies": {
"@brainstack/hub": "^1.1.57",
"@brainstack/log": "^1.1.60",
"@brainstack/hub": "^1.1.58",
"@brainstack/log": "^1.1.61",
"ws": "^8.13.0"
},
"gitHead": "d50064fcba0d7e47d656b9eeb8654310caa11095"
"gitHead": "df0a07d12cf4d966932a99ca8d3e08d556e367a1"
}

@@ -18,4 +18,4 @@ import { createLogger, Logger } from '@brainstack/log';

constructor(options: BridgeServerOptions) {
this.port = PORT;
this.host = HOST;
this.port = options?.port ?? PORT;
this.host = options?.host ?? HOST;
this.options = options;

@@ -22,0 +22,0 @@ this.logger = options.logger || createLogger(5);

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