Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@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
The npm package @enotes/gulp-s3 receives a total of 0 weekly downloads. As such, @enotes/gulp-s3 popularity was classified as not popular.
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.