• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

lambduh/lambduh-gulp: A handful of gulp commands typical to building AWS Lambda ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

lambduh/lambduh-gulp

开源软件地址(OpenSource Url):

https://github.com/lambduh/lambduh-gulp

开源编程语言(OpenSource Language):

JavaScript 100.0%

开源软件介绍(OpenSource Introduction):

lambduh-gulp

A handful of gulp commands typical to building AWS Lambda functions

Much of this was inspired/borrowed from Adam Neary's post here.

Usage

npm i --save-dev lambduh-gulp

Pass your instance of gulp into lambduh-gulp somewhere in your gulpfile.js.

//gulpfile.js
var gulp = require('gulp');
var lambduhGulp = require('lambduh-gulp');

lambduhGulp(gulp);

Optionally, you don't need to require your own gulp... but if you want to add any of your own tasks, you'll want your own instance.

Gulp tasks

gulp zipload

The task you'll use the most – runs gulp lambda-zip, then gulp upload. See the next two funcs for details.

gulp lambda-zip

  • Runs a clean to remove any dist/* or dist.zip
  • Pipes your index.js, bin/*, and package.json into a dist folder
  • Installs your production node-modules in dist/
  • Zips it up into a dist.zip

gulp upload

  • Creates and uploads a new Lambda function. If one exists, this will update the function's configuration, then re-upload the latest code.

This function assumes you have a local ./lambda-config.js file with details on your lambda function. The parameters match those used by the (current) JS aws-sdk:

//lambda-config.js
module.exports = {
  FunctionName: 'funcName',
  Description: 'descrip',
  Handler: 'index.handler',
  Role: 'arn:aws:iam:etcetc',
  Region: 'us-east-1',
  Runtime: 'nodejs',
  MemorySize: 320,
  Timeout: 60,
  Environment: 'production'
}

Uploading also assumes your have permissions to update lambda functions from your machine. This takes time to configure via the AWS CLI, but the resulting workflow is worth it. And besides, AWS's interface is much easier to use from the commandline relative to the non-sense they present in the console.

Other gulp tasks

Note that if you're not careful, you may overwrite some of the gulp tasks this module uses. If any of these are silly (i.e. this module shouldn't own the namespace), let me know and I can prefix all of them:

  • clean
  • js
  • bin
  • node-mods
  • zip
  • lambda-zip
  • upload
  • zipload

Reach out!

I'd love some feedback/PRs/whatever - open an issue and let's talk.




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap