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-signalr/signalr-quickstart-azure-functions-javascript.md
+4-12Lines changed: 4 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: sffamily
5
5
ms.service: signalr
6
6
ms.devlang: javascript
7
7
ms.topic: quickstart
8
-
ms.date: 03/04/2019
8
+
ms.date: 12/14/2019
9
9
ms.author: zhshang
10
10
---
11
11
# Quickstart: Create a chat room with Azure Functions and SignalR Service using JavaScript
@@ -18,11 +18,9 @@ This quickstart can be run on macOS, Windows, or Linux.
18
18
19
19
Make sure you have a code editor such as [Visual Studio Code](https://code.visualstudio.com/) installed.
20
20
21
-
Install the [Azure Functions Core Tools (v2)](https://github.com/Azure/azure-functions-core-tools#installing) to run Azure Function apps locally.
21
+
Install the [Azure Functions Core Tools](https://github.com/Azure/azure-functions-core-tools#installing) (version 2 or higher) to run Azure Function apps locally.
22
22
23
-
Azure Functions requires [Node.js](https://nodejs.org/en/download/) version 8 or 10.
24
-
25
-
In order to install extensions, Azure Functions Core Tools currently require the [.NET Core SDK](https://www.microsoft.com/net/download) installed. However, no knowledge of .NET is required to build JavaScript Azure Function apps.
23
+
This quickstart uses [Node.js](https://nodejs.org/en/download/) 10.x but should work with other versions. Refer to the [Azure Functions runtime versions documentation](../azure-functions/functions-versions.md#languages) for more information on supported Node.js versions.
@@ -57,13 +55,7 @@ Sign in to the Azure portal at <https://portal.azure.com/> with your Azure accou
57
55
-**negotiate** - Uses the *SignalRConnectionInfo* input binding to generate and return valid connection information.
58
56
-**messages** - Receives a chat message in the request body and uses the *SignalR* output binding to broadcast the message to all connected client applications.
59
57
60
-
1. In the terminal, ensure that you are in the *src/chat/javascript* folder. Use the Azure Functions Core Tools to install extensions required to run the app.
61
-
62
-
```bash
63
-
func extensions install
64
-
```
65
-
66
-
1. Run the functionapp.
58
+
1. In the terminal, ensure that you are in the *src/chat/javascript* folder. Run the function app.
0 commit comments