Supported languages in Azure Functions
This article explains the levels of support offered for languages that you can use with Azure Functions.
Levels of support
There are three levels of support:
- Generally available (GA) - Fully supported and approved for production use.
- Preview - Not yet supported but is expected to reach GA status in the future.
- Experimental - Not supported and might be abandoned in the future; no guarantee of eventual preview or GA status.
Languages in runtime 1.x and 2.x
Two versions of the Azure Functions runtime are available. The following table shows which languages are supported in each runtime version.
| Language | 1.x | 2.x |
|---|---|---|
| C# | GA (.NET Framework 4.7) | GA (.NET Core 2.2) |
| JavaScript | GA (Node 6) | GA (Node 8 & 10) |
| F# | GA (.NET Framework 4.7) | GA (.NET Core 2.2) |
| Java | N/A | GA (Java 8) |
| PowerShell | Experimental | Preview (PowerShell Core 6) |
| Python | Experimental | GA (Python 3.6.x) |
| TypeScript | Experimental | GA (supported through transpiling to JavaScript) |
| Bash | Experimental | N/A |
| Batch (.cmd, .bat) | Experimental | N/A |
| PHP | Experimental | N/A |
For information about planned changes to language support, see Azure roadmap.
Experimental languages
The experimental languages in version 1.x don't scale well and don't support all bindings.
Don't use experimental features for anything that you rely on, as there is no official support for them. Support cases should not be opened for problems with experimental languages.
The version 2.x runtime doesn't support experimental languages. Support for new languages is added only when the language can be supported in production.
Language extensibility
The 2.x runtime is designed to offer language extensibility. The JavaScript and Java languages in the 2.x runtime are built with this extensibility.
Next steps
To learn more about how to use one of the GA or preview languages in Azure Functions, see the following resources:
Feedback
Loading feedback...



