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
Copy file name to clipboardExpand all lines: articles/azure-functions/durable/quickstart-js-vscode.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,16 +4,14 @@ description: Create and publish an Azure Durable Function using Visual Studio Co
4
4
author: anthonychu
5
5
6
6
ms.topic: quickstart
7
-
ms.date: 03/24/2020
7
+
ms.date: 05/07/2020
8
8
ms.reviewer: azfuncdf, antchu
9
9
---
10
10
11
11
# Create your first durable function in JavaScript
12
12
13
13
*Durable Functions* is an extension of [Azure Functions](../functions-overview.md) that lets you write stateful functions in a serverless environment. The extension manages state, checkpoints, and restarts for you.
In this article, you learn how to use the Visual Studio Code Azure Functions extension to locally create and test a "hello world" durable function. This function will orchestrate and chain together calls to other functions. You then publish the function code to Azure.
18
16
19
17

@@ -57,7 +55,7 @@ Visual Studio Code installs the Azure Functions Core Tools, if needed. It also c
57
55
58
56
A package.json file is also created in the root folder.
59
57
60
-
### Enable Azure Functions V2 compatibility mode
58
+
### Enable compatibility mode
61
59
62
60
Currently, JavaScript Durable Functions require Azure Functions V2 compatibility mode to be enabled.
63
61
@@ -200,7 +198,7 @@ After you've verified that the function runs correctly on your local computer, i
0 commit comments