
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
AWS S3 plugin for gulp. This plugin is based open AWS CLI, that supports much more features (and has better performances) then available AWS node.js libraries.
npm install gulp-aws --save-dev
Upload files to AWS S3.
bucket
: AWS bucket nameaws_region
: AWS regionaws_key
: AWS access keyaws_secret
: AWS access secretaws_cli_path
: The path of the AWS CLI. Defaults to /usr/local/bin/aws
prefix_path
: A path to prefix the basename of the file with when forming the S3 keyCreate a tar.gz with the content of the 'src' directory and upload it to S3
var aws = require('gulp-aws');
var tar = require('gulp-tar');
var gzip = require('gulp-gzip');
gulp.task('my-task', function() {
return gulp.src('src/**/*', {buffer:false})
.pipe(tar('mypackage.tar'))
.pipe(gzip())
.pipe(gulp.dest('./build'))
.pipe(aws.s3('my-bucket-name', {
aws_region: 'eu-west-1',
aws_key: 'your aws key here',
aws_secret: 'your aws secret here'
}));
});
2018-10-23
- 0.1.0
gulp-util
with plugin-error
(PR #11 - thanks to chriskinsman)FAQs
AWS S3 plugin for Gulp
The npm package gulp-aws receives a total of 37 weekly downloads. As such, gulp-aws popularity was classified as not popular.
We found that gulp-aws 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.