Azure Functions
- Serverless Functions that can be deployed on Azure
- Zero – Administrivate Efforts
- Languages
- Python
- C#
- Java
- JavaScript
Azure Functions Workflow

Pricing Models
- Consumption Plan: Pay only for the consumption of compute resources during function execution
- Premium Plan: Pre-warmed instances are online and your azure function is executed on them or scaled to more instances if required.
- Azure App Service: Hosting azure functions using existing azure app service plans.
- For more info Refer Here
- For Developer Guide Refer Here
Setup Dev Environment
- Install nodejs
- Refer Here
- Use Chocolatey to install nodejs
choco install nodejs-lts -y - Install .net core 2.1
choco install dotnetcore --version=2.1.0 - Install Azure Functions tools using
npm install -g azure-functions-core-tools - Install visual studio extension from here
