Skip to content

Commit 2636b0e

Browse files
update
1 parent c6b09d1 commit 2636b0e

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

articles/azure-app-configuration/TOC.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
href: howto-feature-filters.md
141141
- name: ASP.NET Core
142142
href: howto-feature-filters-aspnet-core.md
143-
- name: Node.js
143+
- name: JavaScript
144144
href: howto-feature-filters-javascript.md
145145
- name: Python
146146
href: howto-feature-filters-python.md
@@ -150,7 +150,7 @@
150150
href: howto-timewindow-filter.md
151151
- name: ASP.NET Core
152152
href: howto-timewindow-filter-aspnet-core.md
153-
- name: Node.js
153+
- name: JavaScipt
154154
href: howto-timewindow-filter-javascript.md
155155
- name: Roll out features to targeted audience
156156
items:

articles/azure-app-configuration/howto-feature-filters-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Feature flags can use feature filters to enable features conditionally. To learn
1717

1818
The example used in this tutorial is based on the Node.js application introduced in the feature management [quickstart](./quickstart-feature-flag-javascript.md). Before proceeding further, complete the quickstart to create a Node.js application with a *Beta* feature flag. Once completed, you must [add a custom feature filter](./howto-feature-filters.md) to the *Beta* feature flag in your App Configuration store.
1919

20-
In this tutorial, you'll learn how to implement a custom feature filter and use the feature filter to enable features conditionally. We are using the Node.js console app you created in the [quickstart](./quickstart-feature-flag-javascript.md) as an example in the content.
20+
In this tutorial, you'll learn how to implement a custom feature filter and use the feature filter to enable features conditionally. We are using the Node.js console app as an example, but you can also use the custom feature filter in other JavaScript applications.
2121

2222
## Prerequisites
2323

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
3434

3535
## Use the feature flag
3636

37+
1. Install the Feature Management by using the `npm install` command.
38+
39+
``` console
40+
npm install @microsoft/feature-management
41+
```
42+
3743
1. Create a file named *app.js* and add the following code.
3844

3945
``` javascript

0 commit comments

Comments
 (0)