# gulp-package-aws-lambda

> create a zip archive with all src files and module dependencies

Latest version **1.0.6** (published 2016-07-04) · ISC license · 0 weekly downloads

## Install

```sh
npm install gulp-package-aws-lambda
pnpm add gulp-package-aws-lambda
yarn add gulp-package-aws-lambda
bun add gulp-package-aws-lambda
```

## 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.6 |
| Published | 2016-07-04 |
| First published | 2016-07-01 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 6 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Daniele Pellegrini |
| Maintainers | danieleplgr84 |
| Keywords | gulp, aws lambda, copy dependencies, zip |

## Links

- npm: https://www.npmjs.com/package/gulp-package-aws-lambda
- Repository: https://github.com/danieleplgr84/gulp-package-aws-lambda
- Homepage: https://github.com/danieleplgr84/gulp-package-aws-lambda#readme
- Issues: https://github.com/danieleplgr84/gulp-package-aws-lambda/issues
- npm.io page: https://npm.io/package/gulp-package-aws-lambda

## Dependencies (6)

- [del](https://npm.io/package/del.md) ^2.2.1
- [gulp](https://npm.io/package/gulp.md) ^3.9.1
- [jshint](https://npm.io/package/jshint.md) ^2.9.2
- [gulp-zip](https://npm.io/package/gulp-zip.md) ^3.2.0
- [gulp-jshint](https://npm.io/package/gulp-jshint.md) ^2.0.1
- [gulp-npm-copy-deps](https://npm.io/package/gulp-npm-copy-deps.md) ^1.0.1

## Alternatives

- [lodash.startswith](https://npm.io/package/lodash.startswith.md) — 769.7K weekly downloads
- [@tarojs/service](https://npm.io/package/@tarojs/service.md) — 33.9K weekly downloads
- [io.extendreality.tilia.indicators.spatialtargets.unity](https://npm.io/package/io.extendreality.tilia.indicators.spatialtargets.unity.md) — 131 weekly downloads
- [@rtarojs/taro](https://npm.io/package/@rtarojs/taro.md) — 90 weekly downloads
- [node-branch-io](https://npm.io/package/node-branch-io.md) — 50 weekly downloads

## Recent versions

- 1.0.6 (latest) — 2016-07-04
- 1.0.5 — 2016-07-04
- 1.0.4 — 2016-07-01
- 1.0.3 — 2016-07-01
- 1.0.2 — 2016-07-01
- 1.0.1 — 2016-07-01
- 1.0.0 — 2016-07-01

## README

# gulp-package-aws-lambda

Gulp plugin to package the src js code plus all the "dependencies" inside a zip archive that can be deployed into lambda aws. 

## Get started

### Install

```
npm gulp-package-aws-lambda
```

### Examples

```javascript
var gulp = require('gulp');


// Specify the folders of your project (srcFiles inside the src folder) 
var options =  {"src": "src", "dest": "dist", "srcFiles": ["index.js"]};

// pass a gulp reference 
var packageAwsLambdaTask = require('gulp-package-aws-lambda')(gulp, options);

// exec the "task"
packageAwsLambdaTask();
	
```

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