Skip to content

Commit af63d53

Browse files
committed
refine wording based on comments
1 parent c6a469d commit af63d53

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

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

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Add the following key-values to the App Configuration store. For more informatio
3636
| *app.greeting* | *Hello World* | Leave empty |
3737
| *app.json* | *{"myKey":"myValue"}* | *application/json* |
3838

39-
## Set up the Node.js app
39+
## Create a Node.js console app
4040

4141
In this tutorial, you create a Node.js console app and load data from your App Configuration store.
4242

@@ -60,13 +60,11 @@ In this tutorial, you create a Node.js console app and load data from your App C
6060

6161
## Connect to an App Configuration store
6262

63-
The key-values stored in Azure App Configuration are loaded as a `Map` object and accessed using their full key names.
64-
If your application requires configuration to be consumed as an object, you can use the `constructConfigurationObject` API.
65-
This API constructs a configuration object based on the key-values loaded from Azure App Configuration.
66-
It minimizes the code changes required to integrate Azure App Configuration into your application.
63+
The following examples demonstrate how to retrieve configuration data from Azure App Configuration and utilize it in your application.
64+
By default, the key-values are loaded as a `Map` object, allowing you to access each key-value using its full key name.
65+
However, if your application uses configuration objects, you can use the `constructConfigurationObject` helper API that creates a configuration object based on the key-values loaded from Azure App Configuration.
6766

68-
The following samples show how to load configuration and consume it as either a `Map` or an object.
69-
Create a new file called *app.js* in the *app-configuration-quickstart* directory and copy the code from each sample.
67+
Create a file named *app.js* in the *app-configuration-quickstart* directory and copy the code from each sample.
7068

7169
### Sample 1: Load key-values with default selector
7270

0 commit comments

Comments
 (0)