Skip to main content
Cloud azure recommended

Azure Functions Patterns

Azure Functions patterns covering triggers, bindings, Python v2 and TypeScript v4 models, Cosmos DB integration, Durable Functions, and serverless best practices.

Difficulty
intermediate
Read time
1 min read
Version
v1.0.0
Confidence
established
Last updated

Quick Reference

Azure Functions: Use v4 programming model (Node.js/TypeScript) or v2 (Python). Isolated worker model is required for new .NET apps. Triggers define function invocation, bindings simplify I/O. Use application settings for secrets. Async/await for I/O. Flex Consumption for zero-downtime. Durable Functions for orchestration.

Use When

  • Azure serverless functions
  • Event-driven Azure apps
  • Azure API backends
  • Azure integrations

Skip When

  • AWS Lambda
  • Long-running processes
  • Non-Azure environments

Azure Functions Patterns

Azure Functions patterns covering triggers, bindings, Python v2 and TypeScript v4 models, Cosmos DB integration, Durable Functions, and serverless best practices.

Tags

azure functions serverless python typescript triggers

Discussion