
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
gulp-elb-deploy
Advanced tools
Gulp plugin for deploying AWS Elastic Beanstalk applications
This is inspired by this other projects gulp-beanstalk-deploy by SeungJae Lee and gulp-elasticbeanstalk-deploy by Juan José Herrero Barbosa.
A plugin devloped in Typescript that helps you deploy your applications to AWS Elastic Beanstalk services easily using Gulp.
You can install this plugin by running this command on the terminal
$ npm install gulp-elb-deploy
import gulp from "gulp",
import eb_deploy from "gulp-elb-deploy";
gulp.task("deploy", function () {
return gulp
.src(["<application-directory-path>"], {
base: "./",
nodir: true,
})
.pipe(
eb_deploy({
version: "APPLICATION_VERSION",
timestamp: true,
waitForDeploy: true,
accessKeyId: "AWS_ACCESS_KEY",
secretAccessKey: "AWS_SECRET_KEY",
signatureVersion: "AWS_ENVIRONMENT_VERSION",
region: "AWS_ENVIRONMENT_REGION",
bucket: "AWS_ENVIRONMENT_S3_BUCKET",
applicationName: "AWS_ELASTIC_BEANSTALK_APPLICATION_NAME",
environmentName: "AWS_ELASTIC_BEANSTALK_ENVIRONMENT_NAME",
})
);
});
stringpackage.json versionThe version that will be used on the filename for the .zip file
stringfalseDetermine whether the filename will contain a time and date
stringfalseDetermine whether to wait for the upload to finish
string~/.aws/credentialsThe access key provided by AWS associated with the IAM user or AWS account. How do I create an AWS access key?.
string~/.aws/credentialsThe secret key provided by AWS associated with the IAM user or AWS account. How do I create an AWS scret key?.
stringv4Version of AWS requests
stringAWS application region. See AWS service endpoints.
stringThe name of an AWS application associated with the IAM user or AWS account. See AWS application name
stringThe name of an AWS environment associated with your application. See AWS CreateEnvironment
stringThe name of an AWS S3 bucket associated with your Elastic Beanstalk. See Elastic Beanstalk with Amazon S3
MIT
FAQs
Simple Gulp plugin for deploying AWS Elastic Beanstalk
The npm package gulp-elb-deploy receives a total of 120 weekly downloads. As such, gulp-elb-deploy popularity was classified as not popular.
We found that gulp-elb-deploy 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
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.