UNPKG

website-deploy

Version:

A simple utility to deploy a static website to [s3-bucket, lambda, ...]

187 lines (108 loc) 4.25 kB
# website-deploy A simple utility to deploy a static website to [s3-bucket, lambda, ...] [![CircleCI](https://circleci.com/gh/RishikeshDarandale/website-deploy.svg?style=svg)](https://circleci.com/gh/RishikeshDarandale/website-deploy) [![Known Vulnerabilities](https://snyk.io/test/github/RishikeshDarandale/website-deploy/badge.svg)](https://snyk.io/test/github/RishikeshDarandale/website-deploy) [![npm](https://img.shields.io/npm/v/website-deploy.svg)](https://www.npmjs.com/package/website-deploy) [![npm](https://img.shields.io/npm/dt/website-deploy.svg)](https://www.npmjs.com/package/website-deploy) [![NpmLicense](https://img.shields.io/npm/l/website-deploy.svg)](https://github.com/RishikeshDarandale/website-deploy/blob/master/LICENSE) # Pre-requisite **You need a node v8 or higher to run this utility.** # Installation ## Install globally ```console npm install --global website-deploy ``` ## Install in project ```console npm install --save-dev website-deploy ``` # Usage This utility has following sub-commands: ## s3 deploy This sub-command sync the provided source folder with AWS s3 bucket. ```console website-deploy s3 [options] <SOURCE_DIR> <S3_BUCKET_NAME> ``` ### Options `--delete` This will delete all the files from the AWS s3 bucket which are not present in provided <SOURCE_DIR> `--debug` This will print extra debug statements for more visibility `--profile <profile name>` Provide a AWS credential profile as a credentials. `--region <AWS region>` Provide a AWS region Name. Default is `us-east-1`. ## lambda deploy This will deploy your application deployable file to AWS lambda. ### update Deploy/update a new function code. ```console website-deploy lambda update [options] <functionName> <zipFilePath> ``` `--debug` This will print extra debug statements for more visibility `--profile <profile name>` Provide a AWS credential profile as a credentials. `--region <AWS region>` Provide a AWS region Name. Default is `us-east-1`. ### version Get the versions deployed to function. ```console website-deploy lambda version [options] <functionName> ``` `--count [count]` This will display the maximum version specified by count. Default is `10`. `--debug` This will print extra debug statements for more visibility `--profile <profile name>` Provide a AWS credential profile as a credentials. `--region <AWS region>` Provide a AWS region Name. Default is `us-east-1`. ### build Create the lambda deploable zip file ```console website-deploy lambda build [options] <outputZipFileName> ``` `--path <PATH>` A object path to be invalidated. This can be provided multiple times to specify additional paths. e.g. ```console website-deploy lambda build --path "/index.js" --path "/lambda.js" myapp.zip ``` `--include-node-modules` Include the `production` npm packages. This will need `package-lock.json` `--debug` This will print extra debug statements for more visibility ## invalidate-cache This sub-command will invalidate the cloudfront cache ```console website-deploy invalidate-cache [options] <CLOUDFRONT_DISTRIBUTION_ID> ``` ### Options `--path <PATH>` A object path to be invalidated. This can be provided multiple times to specify additional paths. e.g. ```console website-deploy invalidate-cache <CLOUDFRONT_DISTRIBUTION_ID> --path "/index.html" --path "/error.html" ``` `--debug [true|false]` This will print extra debug statements for more visibility `--profile <profile name>` Provide a AWS credential profile as a credentials. `--region <AWS region>` Provide a AWS region Name. Default is `us-east-1`. # Issue or need a new feature? If you are experiencing a issue or wanted to add a new feature, please create a github issue [here][1]. # Contributing :star: Star me on GitHub — it helps! :heart: contribution: Here is [contributing guide][2] in deatil. For impatient here are quick steps: - **Fork** the repository - Create **Branch** in you local repository - while(youFinish) { **Commit** } - **Squash** related commits. - **Write** unit test cases for your work. - Check the **Build** on your local. - Raise a **Pull Request** (aka PR) [1]: https://github.com/RishikeshDarandale/website-deploy/issues/new [2]: ./CONTRIBUTING.md