node-datachannel
Advanced tools
Comparing version 0.0.25 to 0.0.26
cmake_minimum_required(VERSION 3.15) | ||
cmake_policy(SET CMP0091 NEW) | ||
project(node_datachannel VERSION 0.0.25) | ||
project(node_datachannel VERSION 0.0.26) | ||
@@ -30,3 +30,3 @@ include_directories(${CMAKE_JS_INC}) | ||
GIT_REPOSITORY https://github.com/paullouisageneau/libdatachannel.git | ||
GIT_TAG "master" | ||
GIT_TAG "v0.11.7" | ||
) | ||
@@ -33,0 +33,0 @@ |
@@ -27,3 +27,4 @@ const nodeDataChannel = require('../../lib/index'); | ||
// Signaling Server | ||
const ws = new WebSocket('ws://localhost:8000/' + id, { | ||
const WS_URL = process.env.WS_URL || "ws://localhost:8000" | ||
const ws = new WebSocket(WS_URL + '/' + id, { | ||
perMessageDeflate: false | ||
@@ -30,0 +31,0 @@ }); |
@@ -15,3 +15,4 @@ const nodeDataChannel = require('../../lib/index'); | ||
// Signaling Server | ||
const ws = new WebSocket('ws:/localhost:8000/' + id, { | ||
const WS_URL = process.env.WS_URL || "ws://localhost:8000" | ||
const ws = new WebSocket(WS_URL + '/' + id, { | ||
perMessageDeflate: false | ||
@@ -18,0 +19,0 @@ }); |
{ | ||
"name": "node-datachannel", | ||
"version": "0.0.25", | ||
"version": "0.0.26", | ||
"description": "libdatachannel node bindings", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1149125
444
18098
56