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-java.md
+14-16Lines changed: 14 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Azure SignalR Service serverless quickstart - Java
2
+
title: Use Java to create a chat room with Azure Functions and SignalR Service
3
3
description: A quickstart for using Azure SignalR Service and Azure Functions to create a chat room.
4
4
author: sffamily
5
5
ms.service: signalr
@@ -9,29 +9,27 @@ ms.date: 03/04/2019
9
9
ms.author: zhshang
10
10
---
11
11
12
-
# Quickstart: Create a chat room with Azure Functions and SignalR Service using Java
12
+
# Quickstart: Use Java to create a chat room with Azure Functions and SignalR Service
13
13
14
-
Azure SignalR Service lets you easily add real-time functionality to your application. Azure Functions is a serverless platform that lets you run your code without managing any infrastructure. In this quickstart, learn how to use SignalR Service and Functions to build a serverless, real-time chat application.
14
+
Azure SignalR Service lets you easily add real-time functionality to your application and Azure Functions is a serverless platform that lets you run your code without managing any infrastructure. In this quickstart, you use Java to build a serverless, real-time chat application using SignalR Service and Functions.
15
15
16
16
## Prerequisites
17
17
18
-
This quickstart can be run on macOS, Windows, or Linux.
18
+
- A code editor, such as [Visual Studio Code](https://code.visualstudio.com/)
19
+
- 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).
20
+
-[Azure Functions Core Tools](https://github.com/Azure/azure-functions-core-tools#installing). Used to run Azure Function apps locally.
19
21
20
-
Make sure you have a code editor such as [Visual Studio Code](https://code.visualstudio.com/) installed.
22
+
> [!NOTE]
23
+
> The required SignalR Service bindings in Java are only supported in Azure Function Core Tools version 2.4.419 (host version 2.0.12332) or above.
21
24
22
-
Install the [Azure Functions Core Tools (v2)](https://github.com/Azure/azure-functions-core-tools#installing) to run Azure Function apps locally.
25
+
> [!NOTE]
26
+
> To install extensions, Azure Functions Core Tools requires 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
27
24
-
> [!NOTE]
25
-
> To use the SignalR Service bindings in Java, make sure you are using version 2.4.419 or higher of the Azure Functions Core Tools (host version 2.0.12332).
26
-
27
-
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.
28
-
29
-
To develop functions app with Java, you must have the following installed:
28
+
-[Java Developer Kit](https://www.azul.com/downloads/zulu/), version 8
29
+
-[Apache Maven](https://maven.apache.org), version 3.0 or above
30
30
31
-
*[Java Developer Kit](https://www.azul.com/downloads/zulu/), version 8.
32
-
*[Apache Maven](https://maven.apache.org), version 3.0 or above.
Copy file name to clipboardExpand all lines: articles/azure-signalr/signalr-quickstart-azure-functions-javascript.md
+11-10Lines changed: 11 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Azure SignalR Service serverless quickstart - JavaScript
2
+
title: Use JavaScript to create a chat room with Azure Functions and SignalR Service
3
3
description: A quickstart for using Azure SignalR Service and Azure Functions to create a chat room.
4
4
author: sffamily
5
5
ms.service: signalr
@@ -8,21 +8,22 @@ ms.topic: quickstart
8
8
ms.date: 12/14/2019
9
9
ms.author: zhshang
10
10
---
11
-
# Quickstart: Create a chat room with Azure Functions and SignalR Service using JavaScript
11
+
# Quickstart: Use JavaScript to create a chat room with Azure Functions and SignalR Service
12
12
13
-
Azure SignalR Service lets you easily add real-time functionality to your application. Azure Functions is a serverless platform that lets you run your code without managing any infrastructure. In this quickstart, learn how to use SignalR Service and Functions to build a serverless, real-time chat application.
13
+
Azure SignalR Service lets you easily add real-time functionality to your application and Azure Functions is a serverless platform that lets you run your code without managing any infrastructure. In this quickstart, you use JavaScript to build a serverless, real-time chat application using SignalR Service and Functions.
14
14
15
15
## Prerequisites
16
16
17
-
This quickstart can be run on macOS, Windows, or Linux.
17
+
- A code editor, such as [Visual Studio Code](https://code.visualstudio.com/)
18
+
- 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).
19
+
-[Azure Functions Core Tools](https://github.com/Azure/azure-functions-core-tools#installing), version 2 or above. Used to run Azure Function apps locally.
20
+
-[Node.js](https://nodejs.org/en/download/), version 10.x
18
21
19
-
Make sure you have a code editor such as [Visual Studio Code](https://code.visualstudio.com/) installed.
22
+
> [!NOTE]
23
+
> The examples should work with other versions of Node.js, see [Azure Functions runtime versions documentation](../azure-functions/functions-versions.md#languages) for more information.
20
24
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
-
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.
0 commit comments