
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
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.
The npm package gulp-upload receives a total of 319 weekly downloads. As such, gulp-upload popularity was classified as not popular.
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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.