{"id":19610636,"url":"https://github.com/justinsisley/eb-deploy-cli","last_synced_at":"2026-05-09T05:03:31.472Z","repository":{"id":66212608,"uuid":"142805532","full_name":"justinsisley/eb-deploy-cli","owner":"justinsisley","description":"A very simple AWS Elastic Beanstalk deployment CLI","archived":false,"fork":false,"pushed_at":"2018-07-30T04:07:03.000Z","size":8,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-26T17:25:31.376Z","etag":null,"topics":["aws","cli","elasticbeanstalk","nodejs"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/justinsisley.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-07-30T00:23:22.000Z","updated_at":"2020-12-05T22:39:59.000Z","dependencies_parsed_at":"2023-02-21T23:16:13.008Z","dependency_job_id":null,"html_url":"https://github.com/justinsisley/eb-deploy-cli","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/justinsisley/eb-deploy-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinsisley%2Feb-deploy-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinsisley%2Feb-deploy-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinsisley%2Feb-deploy-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinsisley%2Feb-deploy-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/justinsisley","download_url":"https://codeload.github.com/justinsisley/eb-deploy-cli/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinsisley%2Feb-deploy-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32807861,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","cli","elasticbeanstalk","nodejs"],"created_at":"2024-11-11T10:31:13.930Z","updated_at":"2026-05-09T05:03:31.448Z","avatar_url":"https://github.com/justinsisley.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg alt=\"eb-deploy-cli\" src=\"https://image.flaticon.com/icons/svg/884/884309.svg\" width=\"80\"\u003e\n\u003c/p\u003e\n\n\u003ch3 align=\"center\"\u003e\n  eb-deploy-cli\n\u003c/h3\u003e\n\n\u003cp align=\"center\"\u003e\n  A very simple AWS Elastic Beanstalk deployment CLI\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://img.shields.io/github/release/justinsisley/eb-deploy-cli.svg?style=for-the-badge\" alt=\"GitHub release\" /\u003e \u003cimg src=\"https://img.shields.io/github/license/justinsisley/eb-deploy-cli.svg?style=for-the-badge\" alt=\"license\" /\u003e\n\u003c/p\u003e\n\n---\n\n__eb-deploy-cli__ is a command line utility for [Node.js](https://nodejs.org/) that helps you helps you upload and deploy new application versions for [AWS Elastic Beanstalk](https://aws.amazon.com/elasticbeanstalk/) applications.\n\nBecause this CLI requires AWS credentials, it is highly recommended that you [view the source code](https://github.com/justinsisley/eb-deploy-cli/blob/master/index.js) to ensure that your tokens are safe and sound.\n\n---\n\n# Table of Contents\n\n- [Features](#features)\n- [Documentation](#documentation)\n  - [Installation](#installation)\n  - [Usage](#usage)\n  - [Contributing](#contributing)\n    - [Linting](#linting)\n- [Releases](https://github.com/justinsisley/eb-deploy-cli/blob/master/CHANGELOG.md)\n- [Credits](#credits)\n\n# Features\n\n- __Focused CLI for uploading and deploying to Elastic Beanstalk__\n- __Absurdly simple deployments in your CI pipeline__\n- __Easy-to-read source code you can trust__\n- __Runs on Node.js v8+__\n\n# Documentation\n\n## Installation\n\nInstall as a _devDependency_:\n\n```bash\nnpm install -D eb-deploy-cli\n```\n\n## Usage\n\nRun the command:\n\n```bash\n./node_modules/.bin/eb-deploy \\\n  --source=\"./my-app.zip\" \\\n  --label=\"v1.0.0\" \\\n  --accessKeyId=\"XXXXXXXXXX\" \\\n  --secretAccessKey=\"XXXXXXXXXX\" \\\n  --region=\"us-east-1\" \\\n  --bucket=\"my-s3-bucket\" \\\n  --applicationName=\"my-app\" \\\n  --environmentName=\"staging\"\n```\n\nFor continuous integration environments, you'll probably want to use environment variables for parts of your configuration. This might look something like:\n\n```bash\n# Read the version from package.json\nPACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\\\",]//g' | tr -d '[[:space:]]')\n\n# Deploy the new version\n./node_modules/.bin/eb-deploy \\\n  --source=\"./my-app.zip\" \\\n  --label=\"v$PACKAGE_VERSION\" \\\n  --accessKeyId=\"$AWS_ACCESS_KEY_ID\" \\\n  --secretAccessKey=\"$AWS_SECRET_ACCESS_KEY\" \\\n  --region=\"us-east-1\" \\\n  --bucket=\"my-s3-bucket\" \\\n  --applicationName=\"my-app\" \\\n  --environmentName=\"staging\"\n```\n\n\u003e __Note:__ There are no default values for any arguments.\n\n# Contributing\n\n## Linting\n\nRun ESLint with `npm run lint`.\n\n# Credits\n\u003cdiv\u003eIcon made by \u003ca href=\"https://www.flaticon.com/authors/eucalyp\" title=\"Eucalyp\"\u003eEucalyp\u003c/a\u003e from \u003ca href=\"https://www.flaticon.com/\" title=\"Flaticon\"\u003ewww.flaticon.com\u003c/a\u003e is licensed by \u003ca href=\"http://creativecommons.org/licenses/by/3.0/\" title=\"Creative Commons BY 3.0\" target=\"_blank\"\u003eCC 3.0 BY\u003c/a\u003e\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustinsisley%2Feb-deploy-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjustinsisley%2Feb-deploy-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustinsisley%2Feb-deploy-cli/lists"}