Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@enotes/gulp-s3
Advanced tools
s3 plugin for gulp
First, install @enotes/gulp-s3
as a development dependency:
npm i --save-dev git+ssh://git@github.com:enotes/gulp-s3.git#v0.4.2
Setup your aws.json file
{
"key": "AKIAI3Z7CUAFHG53DMJA",
"secret": "acYxWRu5RRa6CwzQuhdXEfTpbQA+1XQJ7Z1bGTCx",
"bucket": "dev.example.com",
"region": "eu-west-1"
}
Then, use it in your gulpfile.js
:
const s3 = require("@enotes/gulp-s3");
aws = JSON.parse(fs.readFileSync('./aws.json'));
gulp.src("./dist/**")
.pipe(s3(aws));
Type: Array
Default: []
Headers to set to each file uploaded to S3
const options = { headers: {"Cache-Control": "max-age=315360000, no-transform, public"} }
gulp.src("./dist/**", {read: false})
.pipe(s3(aws, options));
Type: Boolean
Default: false
Only upload files with .gz extension, additionally it will remove the .gz suffix on destination filename and set appropriate Content-Type and Content-Encoding headers.
const gulp = require("gulp");
const s3 = require("@enotes/gulp-s3");
const gzip = require("gulp-gzip");
const options = { gzippedOnly: true };
gulp.src("./dist/**")
.pipe(gzip())
.pipe(s3(aws, options));
});
Type: Number
Default: [3][Intimidate]
The number of times to retry before failing.
const gulp = require("gulp");
const s3 = require("@enotes/gulp-s3");
const options = { maxRetries: 5 };
gulp.src("./dist/**")
.pipe(s3(aws, options));
MIT License [Intimidate]: https://github.com/jergason/intimidate#api
FAQs
A plugin for Gulp that uploads files to s3
We found that @enotes/gulp-s3 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.