npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gulp-elastic-beanstalk-deploy

v0.2.0

Published

A Gulp module for deploying to AWS Elastic Beanstalk

Downloads

197

Readme

gulp-elastic-beanstalk-deploy

A Gulp module for deploying to AWS Elastic Beanstalk

This plugin helps you to integrate your deployment task on the Amazon AWS Elastic Beanstalk service into gulp. Your deployment job will be more mainatainable and efficient, so that you can increase productivity.

Based on gulp-beanstalk-deploy by SeungJae Lee.

Getting Started

You can install plugin by this command:

$ npm install gulp-elastic-beanstalk-deploy

Overview

gulp.task('deploy', function(cb) {
    eb({
        // options here
    }, cb)
});

Options

A * indicates a mandatory option.

profile
  • Type: string

The AWS profile to use. This refers to an IAM user with credentials in the ~/.aws/credentials file.

accessKeyId
  • Type: string
  • Default: ~/.aws/credentials

The AWS access key id. If nothing is passed, it will use your local AWS profile credential.

secretAccessKey
  • Type: string
  • Default: ~/.aws/credentials

The AWS access secret access key. If nothing is passed, it will use your local AWS profile credential.

region *
  • Type: string

Your application region. It must be provided.

applicationName *
  • Type: string

Your application name. It must be provided.

environmentName *
  • Type: string

Your application enviroment name. It must be provided.

versionLabel
  • Type: string
  • Default: sourceBundle file name without the extension
description
  • Type: string

Your deployment description.

settings
  • Type: Array

Your environment setting parameters.

waitForDeploy
  • Type: boolean
  • Default: true
checkIntervalSec
  • Type: number
  • Default: 2sec

Interval time to check deploying status. (sec)

s3Bucket
  • Type: object
  • Default:
{
    bucket: '',    // applicationName
    key: ''        // sourceBundle basename
}
sourceBundle *
  • Type: string

Archive file path to upload. It must exists in your local file system, which means the archive file must be prepared before deployment task.

uploadOnly
  • Type: boolean
  • Default: false

Used if you want to upload a package to the application without deploying to an environment.

Usage Example

const gulp = require('gulp');
const eb = require('gulp-elastic-beanstalk-deploy');

gulp.task('deploy', function(cb) {
    eb({
        profile: 'YOUR-IAM-USER', // optional
        accessKeyId: 'YOUR-AWS-ACCESS-KEY-ID', // optional
        secretAccessKey: 'YOUR-AWS-SECRET-ACCESS-KEY', // optional
        region: 'YOUR-REGION', // required
        applicationName:'my-eb-app',
        environmentName: 'my-eb-env',
        versionLabel: '1.0.0',
        sourceBundle: './archive.zip',
        description: 'Description here'
    }, cb);
});

License

MIT