Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
gulp-upload
Advanced tools
Use urllib to upload file to remote server.
npm install --save-dev gulp-upload
var gulp = require('gulp');
var upload = require('gulp-upload');
var options = {
server: 'http://192.168.0.77:7890/upload',
data: {
dirname: 'upload',
fileName: 'dest.js'
},
callback: function (err, data, res) {
if (err) {
console.log('error:' + err.toString());
} else {
console.log(data.toString());
}
}
}
gulp.task('upload', function() {
return gulp.src('server.js')
.pipe(upload(options));
});
var gulp = require('gulp')
var upload = require('gulp-upload')
var path = require('path')
var options = {
server: 'http://192.168.0.77:7890/upload',
data: {
fileName: function(file) {
return path.relative(__dirname, file.path)
}
}
}
gulp.task('watch', function () {
return watch('src/**/*.html')
.pipe(upload(options))
})
var express = require('express');
var skipper = require('skipper');
var app = express();
var port = 7890;
app.post('/upload', skipper());
app.post('/upload', function(req, res){
var body = req.body || {};
var options = {
dirname: __dirname + (body.dirname || ''),
saveAs: body.fileName
};
req.file('file').upload(options, function (err, uploadedFiles) {
if (err) {
return res.status(500).send(err.toString())
} else {
return res.send('successfully!');
}
});
});
app.listen(port, function(){
port = (port !== '80' ? ':' + port : '');
var url = 'http://localhost' + port + '/';
console.log('Running at ' + url);
});
Option | Type | Description |
---|---|---|
server | ((string))(required) | Remote server to upload. |
data | ((object)) | The data will put in the field and send to server.If it is a function, it should return result. |
fileinputname | ((string)) | To define the name of API. |
https://github.com/node-modules/urllib#api-doc
MIT
FAQs
Upload file to remote server.
We found that gulp-upload demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.