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

nightmare-swiftly

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nightmare-swiftly - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

.npmignore

6

History.md

@@ -5,2 +5,8 @@

* fixing downloading
* fixing history
0.0.6 / 2014-04-13
==================
* fixing url mapping and require exec

@@ -7,0 +13,0 @@ * fixing history

7

index.js
var exec = require('child_process').exec;
var request = require('superagent');
var fs = require('fs');

@@ -111,4 +113,5 @@ /**

}, function (urls) {
urls.forEach(function (file) {
exec('wget -P ' + path + ' ' + file);
urls.forEach(function (file, index) {
var stream = fs.createWriteStream(path + 'file-' + index + '.svg');
request.get(file).pipe(stream);
});

@@ -115,0 +118,0 @@ })

{
"name": "nightmare-swiftly",
"version": "0.0.6",
"version": "0.0.7",
"author": "Segment.io",

@@ -15,4 +15,6 @@ "keywords": [

},
"dependencies": {},
"dependencies": {
"superagent": "~0.17.0"
},
"devDependencies": {}
}
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