You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
Azure Functions is Azure's event-driven, serverless compute service. It lets you run small pieces of code — called functions — without provisioning or managing servers. Each function is triggered by an event, executes its logic, and returns a result. This lesson covers the fundamentals: creating your first function, understanding the project structure, supported languages, and the development workflow.
An Azure Function is a single unit of execution — a method or function in code — that runs in response to a trigger. Functions are:
A function app is the container that hosts one or more related functions. It provides the execution context, configuration, and deployment unit. All functions within a function app share the same configuration, connection strings, and pricing plan.
Azure Functions supports multiple languages across two programming models:
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.