Reputation: 9183
I am writing AWS Lambda functions for my project (node) and now trying to figure out the best way to deploy these. Ideally I would want to
What is the best way to get this done?
Upvotes: 0
Views: 105
Reputation: 16037
You can use serverless
and serverless-webpack
to do both of those.
serverless
is a deployment and configuration tool.
serverless-webpack
is a plugin for serverless
that will compile your ES7 code upon deployment.
Upvotes: 1
Reputation: 8541
Either you canzip it and upload it or you can use automate the deployment with AWS CodePipelne. Please see here more details about automated deployment
Upvotes: 0