
Security News
TC39 Advances 11 Proposals for Math Precision, Binary APIs, and More
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.
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 39 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.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.