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

@signalapp/ringrtc

Package Overview
Dependencies
Maintainers
6
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@signalapp/ringrtc - npm Package Compare versions

Comparing version 2.34.3 to 2.34.4

5

package.json
{
"name": "@signalapp/ringrtc",
"version": "2.34.3",
"version": "2.34.4",
"description": "Signal Messenger voice and video calling library.",

@@ -27,3 +27,3 @@ "main": "dist/index.js",

"prebuildUrl": "https://build-artifacts.signal.org/libraries/ringrtc-desktop-build-v${npm_package_version}.tar.gz",
"prebuildChecksum": "04c645ce226431879362474ffa2b59deea23516b35c14d480f4e120ac2d90f40"
"prebuildChecksum": "8c94d3dfb6b79167d8a7be3361426d5421c4816d5158ef9507cd051dbd4d75f6"
},

@@ -33,2 +33,3 @@ "author": "",

"dependencies": {
"https-proxy-agent": "7.0.1",
"tar": "^6.1.0"

@@ -35,0 +36,0 @@ },

7

scripts/fetch-prebuild.js

@@ -9,2 +9,3 @@ //

const https = require('https');
const { HttpsProxyAgent } = require('https-proxy-agent');
const fs = require('fs');

@@ -55,3 +56,7 @@ const path = require('path');

return new Promise((resolve, reject) => {
https.get(URL, async res => {
let options = {};
if (process.env.HTTPS_PROXY != undefined) {
options.agent = new HttpsProxyAgent(process.env.HTTPS_PROXY);
}
https.get(URL, options, async res => {
try {

@@ -58,0 +63,0 @@ const out = fs.createWriteStream(tmpFile);

Sorry, the diff of this file is too big to display

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