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

wget-improved

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wget-improved - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

10

lib/wget.js

@@ -31,2 +31,6 @@ 'use strict'

options = parseOptions('download', options);
} else {
options = {
gunzip: false
};
}

@@ -94,4 +98,4 @@ srcUrl = url.parse(src);

});
} else {
downloader.emit('error', 'Server respond ' + res.statusCode);
} else if(res.statusCode !== 200 && res.statusCode !== 302) {
downloader.emit('error', 'Server responded with unhandled status: ' + res.statusCode);
}

@@ -191,2 +195,4 @@ });

}
options.gunzip = options.gunzip || false;
return options;

@@ -193,0 +199,0 @@ }

2

package.json
{
"name": "wget-improved",
"version": "1.0.0",
"version": "1.0.1",
"description": "wget in nodejs, forked from wget to add improvements and help maintain the project",

@@ -5,0 +5,0 @@ "keywords": ["download", "http", "https", "ftp", "proxy", "wget"],

@@ -9,3 +9,3 @@ # wget-improved

- Better error reporting
- Does not write using append (now uses w+ identical to wget)
- Does not write using append (uses w+ identical to wget)
- Handles gzip compression, allow you to automatically gunzip the stream

@@ -12,0 +12,0 @@

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