Deploying a Node app on Azure Functions
问题 I am wondering about how it might be possible to deploy a Node.js app on Azure Functions. Basically, I have a function setup and running a basic hello world http example that looks like: module.exports = function (context, req) { context.log('JavaScript HTTP trigger function processed a request.'); context.res = { // status: 200, /* Defaults to 200 */ body: "Hello " + req.params.name }; context.done(); }; The app I am trying to deploy into a function is a simple moc client that uses swagger