express-fileupload
Advanced tools
Comparing version 0.0.4 to 0.0.5
{ | ||
"name": "express-fileupload", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"author": "Richard Girges <richardgirges@gmail.com>", | ||
"description": "Simple express file upload middleware that wraps around connect-busboy", | ||
"main": "./jslib/index", | ||
"main": "./lib/index", | ||
"dependencies": { | ||
"connect-busboy": "0.0.2", | ||
"fs-extra": "^0.22.1" | ||
"fs-extra": "^0.22.1", | ||
"streamifier": "^0.1.1" | ||
}, | ||
@@ -32,7 +33,4 @@ "engines": { | ||
"devDependencies": { | ||
"coffee-script": "^1.9.3", | ||
"gulp": "^3.9.0", | ||
"gulp-coffee": "^2.3.1", | ||
"gulp-util": "^3.0.6" | ||
"express": "^4.13.4" | ||
} | ||
} |
@@ -34,3 +34,3 @@ express-fileupload | ||
sampleFile = req.files.sampleFile; | ||
sampleFile.mv('/somewhere/on/your/server', function(err) { | ||
sampleFile.mv('/somewhere/on/your/server/filename.jpg', function(err) { | ||
if (err) { | ||
@@ -37,0 +37,0 @@ res.status(500).send(err); |
Sorry, the diff of this file is not supported yet
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
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
6414
1
78
3
+ Addedstreamifier@^0.1.1
+ Addedstreamifier@0.1.1(transitive)