I’m wondering if there is anyone using serverless framework with azure functions and how you handle sharing code across functions & bundling?
I’m converting hapi.js app to serverless + serverless-azure-functions and I’m trying to bundle my code before deploying so I can use various require
for reusable modules.
I found serverless-webpack and It create bundles that probably works on AWS Lambda but there is a problem on azure because of lack of function.json
files (ex. list-function.json
), so the functions aren’t visible at all inside azure-portal nor I can’t invoke them.
Also found this article https://cmatskas.com/azure-functions-improvements-with-webpack/ about this problem but It shows how to handle this with azure-functions-cli
which only support Windows platform.
Best, JH