Skip to content

Commit 557306e

Browse files
committed
Update serverless SignalR JavaScript quickstart
- remove extensions install - update to Node 10+
1 parent 09a2e14 commit 557306e

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

articles/azure-signalr/signalr-quickstart-azure-functions-javascript.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: sffamily
55
ms.service: signalr
66
ms.devlang: javascript
77
ms.topic: quickstart
8-
ms.date: 03/04/2019
8+
ms.date: 12/14/2019
99
ms.author: zhshang
1010
---
1111
# 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.
1818

1919
Make sure you have a code editor such as [Visual Studio Code](https://code.visualstudio.com/) installed.
2020

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.
2222

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.
2624

2725
[!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
2826

@@ -57,13 +55,7 @@ Sign in to the Azure portal at <https://portal.azure.com/> with your Azure accou
5755
- **negotiate** - Uses the *SignalRConnectionInfo* input binding to generate and return valid connection information.
5856
- **messages** - Receives a chat message in the request body and uses the *SignalR* output binding to broadcast the message to all connected client applications.
5957

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 function app.
58+
1. In the terminal, ensure that you are in the *src/chat/javascript* folder. Run the function app.
6759

6860
```bash
6961
func start

0 commit comments

Comments
 (0)