Skip to content

Commit 0495474

Browse files
Merge pull request #312940 from hhunter-ms/hh-367039
[Durable][UUF] Test quickstart and clarify durable functions extension version for JS
2 parents ed93447 + cb67632 commit 0495474

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

articles/azure-functions/durable/quickstart-js-vscode.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,17 +123,23 @@ To use the v4 programming model, you install the v3.x version of the durable-fun
123123

124124
::: zone-end
125125

126+
::: zone pivot="nodejs-model-v3"
127+
128+
To use the v3 programming model, install the durable-functions v2.x library.
129+
130+
::: zone-end
131+
126132
1. Use the **View** menu or select Ctrl+Shift+` to open a new terminal in Visual Studio Code.
127133

128134
::: zone pivot="nodejs-model-v3"
129135

130-
2. Install the durable-functions npm package by running `npm install durable-functions` in the root directory of the function app.
136+
2. Install the durable-functions npm package by running `npm install durable-functions@2.1.4` in the root directory of the function app.
131137

132138
::: zone-end
133139

134140
::: zone pivot="nodejs-model-v4"
135141

136-
2. Install the durable-functions npm package preview version by running `npm install durable-functions@preview` in the root directory of the function app.
142+
2. Install the durable-functions npm package by running `npm install durable-functions` in the root directory of the function app.
137143

138144
::: zone-end
139145

@@ -278,7 +284,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
278284

279285
5. Use your browser or an HTTP test tool to send an HTTP POST request to the URL endpoint.
280286

281-
Replace the last segment with the name of the orchestrator function (`HelloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/HelloOrchestrator`.
287+
Replace the last segment with the name of the orchestrator function (`helloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/helloOrchestrator`.
282288

283289
The response is the HTTP function's initial result. It lets you know that the durable orchestration started successfully. It doesn't yet display the end result of the orchestration. The response includes a few useful URLs. For now, query the status of the orchestration.
284290

0 commit comments

Comments
 (0)