Socket
Socket
Sign inDemoInstall

libxl

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

libxl - npm Package Compare versions

Comparing version 0.2.20 to 0.2.21

4

CHANGELOG.md

@@ -26,1 +26,5 @@ # Changelog

* Bump dependency versions.
## 0.2.20
* Download libxl via HTTPS.

8

install-libxl.js

@@ -34,3 +34,3 @@ /**

tar = require('tar'),
http = require('http'),
https = require('https'),
AdmZip = require('adm-zip');

@@ -67,3 +67,3 @@

console.log(util.format(
'\nplease download libxl manually from http://www.libxl.com and point the environment variable %s to the downloaded file',
'\nplease download libxl manually from https://www.libxl.com and point the environment variable %s to the downloaded file',
archiveEnv

@@ -76,7 +76,7 @@ ));

function onOpen() {
var url = util.format('http://www.libxl.com/download/%s', getArchiveName());
var url = util.format('https://www.libxl.com/download/%s', getArchiveName());
console.log('Downloading ' + url);
http.get(url, function(response) {
https.get(url, function(response) {
if (response.statusCode !== 200) {

@@ -83,0 +83,0 @@ dieOnError(new Error(util.format('request failed: %s %s', response.statusCode, response.statusMessage)));

@@ -5,3 +5,3 @@ {

"license": "MIT",
"version": "0.2.20",
"version": "0.2.21",
"description": "Node bindings for the libxl library for reading and writing excel (XLS and XLSX) spreadsheets.",

@@ -8,0 +8,0 @@ "keywords": [

Sorry, the diff of this file is not supported yet

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