Skip to content

Commit 560688c

Browse files
authored
address comments
1 parent bff4d06 commit 560688c

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

articles/azure-app-configuration/quickstart-javascript-provider.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Quickstart for using Azure App Configuration with JavaScript apps | Microsoft Docs
2+
title: Quickstart for using Azure App Configuration with JavaScript apps
33
description: In this quickstart, create a Node.js app with Azure App Configuration to centralize storage and management of application settings separate from your code.
44
services: azure-app-configuration
55
author: eskibear
@@ -15,15 +15,18 @@ ms.author: yanzh
1515

1616
In this quickstart, you will use Azure App Configuration to centralize storage and management of application settings using the [Azure App Configuration JavaScript provider client library](https://github.com/Azure/AppConfiguration-JavaScriptProvider).
1717

18-
The JavaScript App Configuration provider is a library running on top of the [Azure SDK for JavaScript](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/appconfiguration/app-configuration), helping JavaScript developers easily consume the App Configuration service. It enables configuration settings to be used like a Map.
18+
App Configuration provider for JavaScript is built on top of the [Azure SDK for JavaScript](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/appconfiguration/app-configuration) and is designed to be easier to use with richer features.
19+
It enables access to key-values in App Configuration as a `Map` object.
20+
It offers features like configuration composition from multiple labels, key prefix trimming, automatic resolution of Key Vault references, and many more.
21+
As an example, this tutorial shows how to use the JavaScript provider in a Node.js app.
1922

2023
## Prerequisites
2124

2225
- An Azure account with an active subscription. [Create one for free](https://azure.microsoft.com/free/).
2326
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
2427
- [LTS versions of Node.js](https://github.com/nodejs/release#release-schedule). For information about installing Node.js either directly on Windows or using the Windows Subsystem for Linux (WSL), see [Get started with Node.js](/windows/dev-environment/javascript/nodejs-overview)
2528

26-
## Add a key-value
29+
## Add key-values
2730

2831
Add the following key-values to the App Configuration store. For more information about how to add key-values to a store using the Azure portal or the CLI, go to [Create a key-value](./quickstart-azure-app-configuration-create.md#create-a-key-value).
2932

@@ -35,7 +38,9 @@ Add the following key-values to the App Configuration store. For more informatio
3538

3639
## Setting up the Node.js app
3740

38-
1. In this tutorial, you'll create a new directory for the project named *app-configuration-quickstart*.
41+
In this tutorial, you'll create a Node.js console app and load data from your App Configuration store.
42+
43+
1. Create a new directory for the project named *app-configuration-quickstart*.
3944

4045
```console
4146
mkdir app-configuration-quickstart
@@ -105,7 +110,7 @@ Add the following key-values to the App Configuration store. For more informatio
105110
To run the app locally using the Windows command prompt, run the following command and replace `<app-configuration-store-connection-string>` with the connection string of your app configuration store:
106111

107112
```cmd
108-
setx AZURE_APPCONFIG_CONNECTION_STRING "app-configuration-store-connection-string"
113+
setx AZURE_APPCONFIG_CONNECTION_STRING "<app-configuration-store-connection-string>"
109114
```
110115

111116
### [PowerShell](#tab/powershell)

articles/azure-app-configuration/quickstart-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Add the following key-value to the App Configuration store and leave **Label** a
7777
To run the app locally using the Windows command prompt, run the following command and replace `<app-configuration-store-connection-string>` with the connection string of your app configuration store:
7878

7979
```cmd
80-
setx AZURE_APPCONFIG_CONNECTION_STRING "app-configuration-store-connection-string"
80+
setx AZURE_APPCONFIG_CONNECTION_STRING "<app-configuration-store-connection-string>"
8181
```
8282

8383
### [PowerShell](#tab/powershell)

0 commit comments

Comments
 (0)