# lambda-deploy-cli

> A lightweight module that is configuration file based and removes as much boiler plate code as possible for deploying lambda functions to AWS.

Latest version **1.0.4** (published 2017-01-31) · MIT license · 0 weekly downloads

## Install

```sh
npm install lambda-deploy-cli
pnpm add lambda-deploy-cli
yarn add lambda-deploy-cli
bun add lambda-deploy-cli
```

Provides the command `lambda-deploy-cli`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.4 |
| Published | 2017-01-31 |
| First published | 2017-01-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Known vulnerabilities | 0 (+4 in 2 direct dependencies) |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Justin Mandurano |
| Maintainers | jmandurano |

## Links

- npm: https://www.npmjs.com/package/lambda-deploy-cli
- Repository: https://github.com/jmandurano/lambda-deploy-cli
- Issues: https://github.com/jmandurano/lambda-deploy-cli/issues
- npm.io page: https://npm.io/package/lambda-deploy-cli

## Dependencies (4)

- [aws-sdk](https://npm.io/package/aws-sdk.md) 2.7.27
- [archiver](https://npm.io/package/archiver.md) 1.3.0
- [fs-extra](https://npm.io/package/fs-extra.md) 2.0.0
- [minimist](https://npm.io/package/minimist.md) 1.2.0

## Recent versions

- 1.0.4 (latest) — 2017-01-31
- 1.0.3 — 2017-01-24
- 1.0.2 — 2017-01-24
- 1.0.1 — 2017-01-23
- 1.0.0 — 2017-01-23

## README

#lambda-deploy-cli
A lightweight module that is configuration file based and removes as much boiler plate code as possible for deploying lambda functions to AWS.

usage
-----
The source must be in ./src/

cli
```
lambda-deploy-cli --config deploy-config.json
```

package.json
```json
  "scripts": {
    "deploy-test": "lambda-deploy-cli --config deploy-config.test.json",
    "deploy": "lambda-deploy-cli --config deploy-config.json"
  },
```
see [sample/sample-config.json](sample/sample-config.json) for a sample configuration file

```json
{
    "functionName": "test-lambda-deploy",
    "config": "config.test.json",       // if omitted, no updates are made to the config file
    "outputConfig": "src/config.json",  // if omitted, no updates are made to the config file
    "aws": {
        "profile": "default",
        "region": "us-east-1"
    }
}
```

install
-------
```
npm install --save-dev lambda-deploy-cli
```

---
_Source: https://npm.io/package/lambda-deploy-cli · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
