You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature Management is a library for enabling/disabling features at runtime.
6
-
Developers can use feature flags in simple use cases like conditional statement to more advanced scenarios like conditionally adding routes.
5
+
Feature management provides a way to develop and expose application functionality based on features. Many applications have special requirements when a new feature is developed such as when the feature should be enabled and under what conditions. This library provides a way to define these relationships, and also integrates into common .NET code patterns to make exposing these features possible.
7
6
8
7
## Getting Started
9
8
10
-
### Prerequisites
9
+
[Azure App Configuration Quickstart](https://learn.microsoft.com/azure/azure-app-configuration/quickstart-feature-flag-javascript): A quickstart guide about how to integrate feature flags from Azure App Configuration into your JavaScript applications.
11
10
12
-
- Node.js LTS version
11
+
[Feature Overview](https://learn.microsoft.com/azure/azure-app-configuration/feature-management-overview#feature-development-status): This document provides a feature status overview.
12
+
13
+
[Feature Reference](https://learn.microsoft.com/azure/azure-app-configuration/feature-management-javascript-reference): This document provides a full feature rundown.
13
14
14
15
### Usage
15
16
16
-
You can use feature flags from the Azure App Configuration service, local files or any other sources.
17
+
You can use feature flags from the Azure App Configuration service, local files or any other sources. For more information, please go to [Feature flag configuration](https://learn.microsoft.com/azure/azure-app-configuration/feature-management-javascript-reference#feature-flag-configuration).
17
18
18
19
#### Use feature flags from Azure App Configuration
19
20
20
21
The App Configuration JavaScript provider provides feature flags in as a `Map` object.
21
22
A builtin `ConfigurationMapFeatureFlagProvider` helps to load feature flags in this case.
22
23
23
24
```js
24
-
constappConfig=awaitload(connectionString, {featureFlagOptions}); // load feature flags from Azure App Configuration service
Copy file name to clipboardExpand all lines: src/feature-management-applicationinsights-browser/README.md
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,11 @@
1
1
# Microsoft Feature Management Application Insights Plugin for Browser
2
2
3
-
Feature Management Application Insights Plugin for Browser provides a solution for sending feature flag evaluation events produced by the Feature Management library.
3
+
Feature Management Application Insights Plugin for Browser provides a solution for sending feature flag evaluation telemetry produced by the [`@microsoft/feature-management`](https://www.npmjs.com/package/@microsoft/feature-management) library.
4
4
5
5
## Getting Started
6
6
7
+
For more information, please go to [Feature reference](https://learn.microsoft.com/azure/azure-app-configuration/feature-management-javascript-reference#application-insights-integration).
Copy file name to clipboardExpand all lines: src/feature-management-applicationinsights-node/README.md
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,15 @@
1
1
# Microsoft Feature Management Application Insights Plugin for Node
2
2
3
-
Feature Management Application Insights Plugin for Node provides a solution for sending feature flag evaluation events produced by the Feature Management library.
3
+
Feature Management Application Insights Plugin for Node provides a solution for sending feature flag evaluation telemetry produced by the [`@microsoft/feature-management`](https://www.npmjs.com/package/@microsoft/feature-management) library.
4
4
5
5
## Getting Started
6
6
7
+
For more information, please go to [Feature reference](https://learn.microsoft.com/azure/azure-app-configuration/feature-management-javascript-reference#application-insights-integration).
Feature Management is a library for enabling/disabling features at runtime.
6
-
Developers can use feature flags in simple use cases like conditional statement to more advanced scenarios like conditionally adding routes.
5
+
Feature management provides a way to develop and expose application functionality based on features. Many applications have special requirements when a new feature is developed such as when the feature should be enabled and under what conditions. This library provides a way to define these relationships, and also integrates into common .NET code patterns to make exposing these features possible.
7
6
8
7
## Getting Started
9
8
10
-
### Prerequisites
9
+
[Azure App Configuration Quickstart](https://learn.microsoft.com/azure/azure-app-configuration/quickstart-feature-flag-javascript): A quickstart guide about how to integrate feature flags from Azure App Configuration into your JavaScript applications.
11
10
12
-
- Node.js LTS version
11
+
[Feature Overview](https://learn.microsoft.com/azure/azure-app-configuration/feature-management-overview#feature-development-status): This document provides a feature status overview.
12
+
13
+
[Feature Reference](https://learn.microsoft.com/azure/azure-app-configuration/feature-management-javascript-reference): This document provides a full feature rundown.
13
14
14
15
### Usage
15
16
16
-
You can use feature flags from the Azure App Configuration service, local files or any other sources.
17
+
You can use feature flags from the Azure App Configuration service, local files or any other sources. For more information, please go to [Feature flag configuration](https://learn.microsoft.com/azure/azure-app-configuration/feature-management-javascript-reference#feature-flag-configuration).
17
18
18
19
#### Use feature flags from Azure App Configuration
19
20
20
21
The App Configuration JavaScript provider provides feature flags in as a `Map` object.
21
22
A builtin `ConfigurationMapFeatureFlagProvider` helps to load feature flags in this case.
22
23
23
24
```js
24
-
constappConfig=load(connectionString, {featureFlagOptions}); // load feature flags from Azure App Configuration service
0 commit comments