Lambda CI/CD with Serverless Framework, AWS Code Pipeline
In this guide we will set up a very simple REST API endpoint with the serverless framework, AWS Lambda, and API Gateway and deploy it to AWS Lambda with Github, AWS Codepipeline, Codebuild 1. Install the Serverless Framework npm install serverless -g 2. Create a project serverless create --template aws-nodejs --path serverless-nodejs-api This will create two files handler.js and serveless.yml 'use strict'; module.exports.api = async event => { return { statusCode: 200, body: JSON....