HTTP Router for AWS Lambda + AWS API Gateway.
AWSLambdaRouter is a simple HTTP router inspired by Express.js router's syntax. It allows you to transfer your stateless Express application to an AWS Lambda using the proxy integration of AWS API Gateway.
- First, create your AWS Lambda, the name is up to you, but you'll need to remember it for the next steps.
- Create your Node.js project on your computer.
- In your project folder run
npm init
and then runnpm install --save aws-lambda-router-wn
- Develop your application using AWSLambdaRouter.
- Zip all the files in your project folder and upload the archive to your AWS Lambda, make sure to configure the handler.
- Configure AWS API Gateway (see below)
- Deploy your AWS API Gateway
- Done! Your can now start using your Lambda! I suggest using Postman to check that everything is all right :)
const AWSLambdaRouter = require('aws-lambda-router-wn');
const app = new AWSLambdaRouter();
app.get('/', (request, response) => {
response(null, 'Hello world');
});
exports.handler = (event, context, callback) => {
console.log('Received event:', JSON.stringify(event, null, 2));
app.serve(event, callback);
};
- First, create a new API on AWS API Gateway (it's important that you use 1 API for 1 AWSLambdaRouter).
- You should have a '/' route with no methods configured, create a new resource using the actions button.
- Click on
configure as proxy resource
and leave the field as they are, enable the CORS configuration if you wish (this will add OPTIONS route). You should have something similar to the image below: - Click on create, you should be redirect to the configuration of the ANY method, configure it as a Lambda proxy, and enter the name of your lambda, like below:
- Click on save, select the '/' route and click on the actions button to create a new ANY method (this time for the '/' route, not '/{proxy+}'.
- Configure the new ANY method like the previous one.
- Enable CORS on the '/' route if needed.
- In the end, you should have something similar for your two ANY method, like this image below:
- Use the actions button to deploy your API.