Wrapper library to use aws-serverless-express with Azure Functions
npm install azure-aws-serverless-express --save
const express = require('express');
const azureFunctionHandler = require('azure-aws-serverless-express');
const app = express();
app.get('/api/hello-world/', (req, res) => res.send('Hello World!'));
module.exports = azureFunctionHandler(app);
$ curl http://localhost:7071/api/hello-world/
Hello World!
Tests