title | description | services | author | ms.service | ms.devlang | ms.topic | ms.custom | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|
Quickstart for using Azure App Configuration with JavaScript apps | Microsoft Docs |
In this quickstart, create a Node.js app with Azure App Configuration to centralize storage and management of application settings separate from your code. |
azure-app-configuration |
maud-lv |
azure-app-configuration |
javascript |
quickstart |
quickstart, mode-other |
07/12/2021 |
malev |
In this quickstart, you will use Azure App Configuration to centralize storage and management of application settings using the App Configuration client library for JavaScript.
- Azure subscription - create one for free
- LTS versions of Node.js. For information about installing Node.js either directly on Windows or using the Windows Subsystem for Linux (WSL), see Get started with Node.js
[!INCLUDE azure-app-configuration-create]
-
Select Configuration Explorer > Create > Key-value to add the following key-value pairs:
Key Value TestApp:Settings:Message Data from Azure App Configuration Leave Label and Content Type empty for now.
-
Select Apply.
-
In this tutorial, you'll create a new directory for the project named app-configuration-quickstart.
mkdir app-configuration-quickstart
-
Switch to the newly created app-configuration-quickstart directory.
cd app-configuration-quickstart
-
Install the Azure App Configuration client library by using the
npm install
command.npm install @azure/app-configuration
-
Create a new file called app.js in the app-configuration-quickstart directory and add the following code:
const appConfig = require("@azure/app-configuration");
-
Set an environment variable named AZURE_APP_CONFIG_CONNECTION_STRING, and set it to the access key to your App Configuration store. At the command line, run the following command:
$Env:AZURE_APP_CONFIG_CONNECTION_STRING = "connection-string-of-your-app-configuration-store"
setx AZURE_APP_CONFIG_CONNECTION_STRING "connection-string-of-your-app-configuration-store"
export AZURE_APP_CONFIG_CONNECTION_STRING='connection-string-of-your-app-configuration-store'
-
Restart the command prompt to allow the change to take effect. Print out the value of the environment variable to validate that it is set properly.
The following code snippet creates an instance of AppConfigurationClient using the connection string stored in your environment variables.
const connection_string = process.env.AZURE_APP_CONFIG_CONNECTION_STRING;
const client = new appConfig.AppConfigurationClient(connection_string);
The following code snippet retrieves a configuration setting by key
name. The key shown in this example was created in the previous steps of this article.
async function run() {
let retrievedSetting = await client.getConfigurationSetting({
key: "TestApp:Settings:Message"
});
console.log("Retrieved value:", retrievedSetting.value);
}
run().catch((err) => console.log("ERROR:", err));
-
Run the following command to run the Node.js app:
node app.js
-
You should see the following output at the command prompt:
Retrieved value: Data from Azure App Configuration
[!INCLUDE azure-app-configuration-cleanup]
In this quickstart, you created a new App Configuration store and learned how to access key-values from a Node.js app.
For additional code samples, visit:
[!div class="nextstepaction"] Azure App Configuration client library samples