You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The [az functionapp create](/cli/azure/functionapp#az-functionapp-create) command creates the function app in Azure. It's recommended that you use the latest version of Node.js, which is currently 18. You can specify the version by setting `--runtime-version` to `18`.
154
+
The [az functionapp create](/cli/azure/functionapp#az-functionapp-create) command creates the function app in Azure. It's recommended that you use the latest version of Node.js, which is currently 20. You can specify the version by setting `--runtime-version` to `20`. Note that Node 20 support is currently in preview.
The [New-AzFunctionApp](/powershell/module/az.functions/new-azfunctionapp) cmdlet creates the function app in Azure. It's recommended that you use the latest version of Node.js, which is currently 18. You can specify the version by setting `--runtime-version` to `18`.
162
+
The [New-AzFunctionApp](/powershell/module/az.functions/new-azfunctionapp) cmdlet creates the function app in Azure. It's recommended that you use the latest version of Node.js, which is currently 20. You can specify the version by setting `--runtime-version` to `20`. Note that Node 20 support is currently in preview.
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-reference-node.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,8 +30,8 @@ The following table shows each version of the Node.js programming model along wi
30
30
31
31
|[Programming Model Version](https://www.npmjs.com/package/@azure/functions?activeTab=versions)| Support Level |[Functions Runtime Version](./functions-versions.md)|[Node.js Version](https://github.com/nodejs/release#release-schedule)| Description |
32
32
| ---- | ---- | --- | --- | --- |
33
-
| 4.x | Preview | 4.16+ | 18.x | Supports a flexible file structure and code-centric approach to triggers and bindings. |
34
-
| 3.x | GA | 4.x | 18.x, 16.x, 14.x | Requires a specific file structure with your triggers and bindings declared in a "function.json" file |
33
+
| 4.x | Preview | 4.16+ |20.x (Preview), 18.x | Supports a flexible file structure and code-centric approach to triggers and bindings. |
34
+
| 3.x | GA | 4.x |20.x (Preview), 18.x, 16.x, 14.x | Requires a specific file structure with your triggers and bindings declared in a "function.json" file |
35
35
| 2.x | GA (EOL) | 3.x | 14.x, 12.x, 10.x | Reached end of life (EOL) on December 13, 2022. See [Functions Versions](./functions-versions.md) for more info. |
36
36
| 1.x | GA (EOL) | 2.x | 10.x, 8.x | Reached end of life (EOL) on December 13, 2022. See [Functions Versions](./functions-versions.md) for more info. |
Copy file name to clipboardExpand all lines: includes/functions-requirements-visual-studio-code-node.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ ms.author: glenga
8
8
9
9
+ An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
10
10
11
-
+[Node.js 18.x](https://nodejs.org/en/download/releases/) or [Node.js 16.x](https://nodejs.org/en/download/releases/). Use the `node --version` command to check your version.
11
+
+[Node.js 18.x](https://nodejs.org/en/download/releases/) or [Node.js 20.x (preview)](https://nodejs.org/en/download/releases/). Use the `node --version` command to check your version.
12
12
13
13
+[Visual Studio Code](https://code.visualstudio.com/) on one of the [supported platforms](https://code.visualstudio.com/docs/supporting/requirements#_platforms).
0 commit comments