Skip to content

Commit 3cbd234

Browse files
authored
Merge pull request #102885 from msebolt/quickstart-consistency-pr3
initial draft
2 parents c38392f + f3627c6 commit 3cbd234

File tree

2 files changed

+25
-26
lines changed

2 files changed

+25
-26
lines changed

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

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Azure SignalR Service serverless quickstart - Java
2+
title: Use Java to create a chat room with Azure Functions and SignalR Service
33
description: A quickstart for using Azure SignalR Service and Azure Functions to create a chat room.
44
author: sffamily
55
ms.service: signalr
@@ -9,29 +9,27 @@ ms.date: 03/04/2019
99
ms.author: zhshang
1010
---
1111

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
1313

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

1616
## Prerequisites
1717

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

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.
2124
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.
2327
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
3030

31-
* [Java Developer Kit](https://www.azul.com/downloads/zulu/), version 8.
32-
* [Apache Maven](https://maven.apache.org), version 3.0 or above.
33-
34-
[!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
31+
> [!NOTE]
32+
> This quickstart can be run on macOS, Windows, or Linux.
3533
3634
## Log in to Azure
3735

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

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Azure SignalR Service serverless quickstart - JavaScript
2+
title: Use JavaScript to create a chat room with Azure Functions and SignalR Service
33
description: A quickstart for using Azure SignalR Service and Azure Functions to create a chat room.
44
author: sffamily
55
ms.service: signalr
@@ -8,21 +8,22 @@ ms.topic: quickstart
88
ms.date: 12/14/2019
99
ms.author: zhshang
1010
---
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
1212

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

1515
## Prerequisites
1616

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
1821

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.
2024
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.
24-
25-
[!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
25+
> [!NOTE]
26+
> This quickstart can be run on macOS, Windows, or Linux.
2627
2728
## Log in to Azure
2829

0 commit comments

Comments
 (0)