Skip to content

Latest commit

 

History

History
157 lines (128 loc) · 8.98 KB

functions-get-started.md

File metadata and controls

157 lines (128 loc) · 8.98 KB
title description ms.topic ms.custom ms.date zone_pivot_groups
Getting started with Azure Functions
Take the first steps toward working with Azure Functions.
overview
devx-track-extended-java, devx-track-js, devx-track-python, devx-track-ts
09/18/2024
programming-languages-set-functions-full

Getting started with Azure Functions

Azure Functions allows you to implement your system's logic as event-driven, readily available blocks of code. These code blocks are called "functions". This article is to help you find your way to the most helpful Azure Functions content as quickly as possible. For more general information about Azure Functions, see the Introduction to Azure Functions.

Make sure to choose your preferred development language at the top of the article.

Create your first function

Complete one of our quickstart articles to create and deploy your first functions in less than five minutes.

::: zone pivot="programming-language-csharp"
You can create C# functions by using one of the following tools:

::: zone-end ::: zone pivot="programming-language-java"
You can create Java functions by using one of the following tools:

::: zone-end ::: zone pivot="programming-language-javascript"
You can create JavaScript functions by using one of the following tools:

::: zone-end ::: zone pivot="programming-language-powershell"
You can create PowerShell functions by using one of the following tools:

::: zone-end ::: zone pivot="programming-language-python"
You can create Python functions by using one of the following tools:

::: zone-end ::: zone pivot="programming-language-typescript"
You can create TypeScript functions by using one of the following tools:

::: zone-end ::: zone pivot="programming-language-other"
Besides the natively supported programming languages, you can use custom handlers to create functions in any language that supports HTTP primitives. The article Create a Go or Rust function in Azure using Visual Studio Code shows you how to use custom handlers to write your function code in either Rust or Go. ::: zone-end ::: zone pivot="programming-language-csharp,programming-language-java,programming-language-javascript,programming-language-powershell,programming-language-python,programming-language-typescript"

Review end-to-end samples

These sites let you browse existing functions reference projects and samples in your desired language: ::: zone-end ::: zone pivot="programming-language-csharp"

Explore an interactive tutorial

Complete one of the following interactive training modules to learn more about Functions:

To learn even more, see the full listing of interactive tutorials.

Related content

::: zone pivot="programming-language-csharp"
Learn more about developing functions by reviewing one of these C# reference articles:

You might also be interested in these articles: