Skip to content

Commit 9e175a2

Browse files
committed
addressed Hossams feedback
1 parent 81eb9fa commit 9e175a2

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

articles/azure-functions/create-first-function-cli-node.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Before you begin, you must have the following:
4444
::: zone-end
4545

4646
::: zone pivot="nodejs-model-v4"
47-
+ [Node.js](https://nodejs.org/) version 18.
47+
+ [Node.js](https://nodejs.org/) version 18 or above.
4848
::: zone-end
4949

5050
### Prerequisite check
@@ -161,9 +161,10 @@ Each binding requires a direction, a type, and a unique name. The HTTP trigger h
161161
4. Add Azure Storage connection information in *local.settings.json*.
162162
```json
163163
{
164-
"Values": {
164+
"Values": {
165+
"AzureWebJobsStorage": "<Azure Storage connection information>",
165166
"FUNCTIONS_WORKER_RUNTIME": "node",
166-
"AzureWebJobsStorage": "<Azure Storage connection information>"
167+
"AzureWebJobsFeatureFlags": "EnableWorkerIndexing"
167168
}
168169
}
169170
```
@@ -205,6 +206,7 @@ Each binding requires a direction, a type, and a unique name. The HTTP trigger h
205206

206207
[!INCLUDE [functions-publish-project-cli](../../includes/functions-publish-project-cli.md)]
207208

209+
::: zone pivot="nodejs-model-v4"
208210
## Update app settings
209211

210212
To enable your V4 programming model app to run in Azure, you need to add a new application setting named `AzureWebJobsFeatureFlags` with a value of `EnableWorkerIndexing`. This setting is already in your local.settings.json file.

articles/azure-functions/create-first-function-cli-typescript.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ Before you begin, you must have the following:
4242
+ [Node.js](https://nodejs.org/) version 18 or 16.
4343
::: zone-end
4444
::: zone pivot="nodejs-model-v4"
45-
+ [Node.js](https://nodejs.org/) version 18.
45+
+ [Node.js](https://nodejs.org/) version 18 or above.
46+
4647
+ [TypeScript](https://www.typescriptlang.org/) version 4+.
4748
::: zone-end
4849

@@ -160,9 +161,10 @@ Each binding requires a direction, a type, and a unique name. The HTTP trigger h
160161
4. Add Azure Storage connection information in *local.settings.json*.
161162
```json
162163
{
163-
"Values": {
164+
"Values": {
165+
"AzureWebJobsStorage": "<Azure Storage connection information>",
164166
"FUNCTIONS_WORKER_RUNTIME": "node",
165-
"AzureWebJobsStorage": "<Azure Storage connection information>"
167+
"AzureWebJobsFeatureFlags": "EnableWorkerIndexing"
166168
}
167169
}
168170
```
@@ -267,6 +269,7 @@ Before you use Core Tools to deploy your project to Azure, you create a producti
267269
Invoke url: https://msdocs-azurefunctions-qs.azurewebsites.net/api/httpexample?code=KYHrydo4GFe9y0000000qRgRJ8NdLFKpkakGJQfC3izYVidzzDN4gQ==
268270
</pre>
269271

272+
::: zone pivot="nodejs-model-v4"
270273
## Update app settings
271274

272275
To enable your V4 programming model app to run in Azure, you need to add a new application setting named `AzureWebJobsFeatureFlags` with a value of `EnableWorkerIndexing`. This setting is already in your local.settings.json file.

articles/azure-functions/create-first-function-vs-code-typescript.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,14 @@ Before you get started, make sure you have the following requirements in place:
2929
+ [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.
3030
::: zone-end
3131
::: zone pivot="nodejs-model-v4"
32-
+ [Node.js 18.x](https://nodejs.org/en/download/releases/). Use the `node --version` command to check your version.
32+
+ [Node.js 18.x](https://nodejs.org/en/download/releases/) or above. Use the `node --version` command to check your version.
33+
3334
+ [TypeScript 4.x](https://www.typescriptlang.org/). Use the `tsc -v` command to check your version.
3435
::: zone-end
3536

3637
+ [Visual Studio Code](https://code.visualstudio.com/) on one of the [supported platforms](https://code.visualstudio.com/docs/supporting/requirements#_platforms).
3738

38-
+ The [Azure Functions extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azurefunctions) for Visual Studio Code.
39+
+ The [Azure Functions extension v1.10.4](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azurefunctions) or above for Visual Studio Code.
3940

4041
::: zone pivot="nodejs-model-v3"
4142
+ [Azure Functions Core Tools 4.x](functions-run-local.md#install-the-azure-functions-core-tools).

includes/functions-requirements-visual-studio-code-node-v4.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ ms.author: jiayma
88

99
+ 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).
1010

11-
+ [Node.js 18.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 above. Use the `node --version` command to check your version.
1212

1313
+ [Visual Studio Code](https://code.visualstudio.com/) on one of the [supported platforms](https://code.visualstudio.com/docs/supporting/requirements#_platforms).
1414

15-
+ The [Azure Functions extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azurefunctions) for Visual Studio Code.
15+
+ The [Azure Functions extension v1.10.4](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azurefunctions) or above for Visual Studio Code.
1616

1717
+ [Azure Functions Core Tools v4.0.5085 or above](../articles/azure-functions/functions-run-local.md#install-the-azure-functions-core-tools).

0 commit comments

Comments
 (0)