Skip to content

Commit

Permalink
update link to use new doc domain
Browse files Browse the repository at this point in the history
beeme1mr authored Apr 14, 2023
1 parent 39f6474 commit 0c2befd
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ Each have slightly different APIs, but share many underlying types and component
- Twitter: [@openfeature](https://twitter.com/openfeature)
- LinkedIn: [OpenFeature](https://www.linkedin.com/company/openfeature/)
- Join us on [Slack](https://cloud-native.slack.com/archives/C0344AANLA1)
- For more check out our [community page](https://docs.openfeature.dev/community/)
- For more check out our [community page](https://openfeature.dev/community/)

## 🤝 Contributing

12 changes: 6 additions & 6 deletions packages/client/README.md
Original file line number Diff line number Diff line change
@@ -48,10 +48,10 @@ yarn add @openfeature/web-sdk

## 🌟 Features:

- support for various [providers](https://docs.openfeature.dev/docs/reference/concepts/provider)
- easy integration and extension via [hooks](https://docs.openfeature.dev/docs/reference/concepts/hooks)
- support for various [providers](https://openfeature.dev/docs/reference/concepts/provider)
- easy integration and extension via [hooks](https://openfeature.dev/docs/reference/concepts/hooks)
- handle flags of any type: bool, string, numeric and object
- [context-aware](https://docs.openfeature.dev/docs/reference/concepts/evaluation-context) evaluation
- [context-aware](https://openfeature.dev/docs/reference/concepts/evaluation-context) evaluation

## 🚀 Usage:

@@ -73,7 +73,7 @@ const boolValue = client.getBooleanValue('boolFlag', false);
### Context-aware evaluation:

Sometimes the value of a flag must take into account some dynamic criteria about the application or user, such as the user location, IP, email address, or the location of the server.
In OpenFeature, we refer to this as [`targeting`](https://docs.openfeature.dev/specification/glossary#targeting).
In OpenFeature, we refer to this as [`targeting`](https://openfeature.dev/specification/glossary#targeting).
If the flag system you're using supports targeting, you can provide the input data using the `EvaluationContext`.

```typescript
@@ -114,7 +114,7 @@ class MyProvider implements Provider {
}
```
See [here](https://docs.openfeature.dev/docs/reference/technologies/server/javascript) for a catalog of available providers.
See [here](https://openfeature.dev/docs/reference/technologies/server/javascript) for a catalog of available providers.
### Hooks:
@@ -132,7 +132,7 @@ export class GlobalDebugHook implements Hook {
}
```
See [here](https://docs.openfeature.dev/docs/reference/technologies/server/javascript) for a catalog of available hooks.
See [here](https://openfeature.dev/docs/reference/technologies/server/javascript) for a catalog of available hooks.
### Logging:
12 changes: 6 additions & 6 deletions packages/server/README.md
Original file line number Diff line number Diff line change
@@ -43,10 +43,10 @@ yarn add @openfeature/js-sdk

## 🌟 Features:

- support for various [providers](https://docs.openfeature.dev/docs/reference/concepts/provider)
- easy integration and extension via [hooks](https://docs.openfeature.dev/docs/reference/concepts/hooks)
- support for various [providers](https://openfeature.dev/docs/reference/concepts/provider)
- easy integration and extension via [hooks](https://openfeature.dev/docs/reference/concepts/hooks)
- handle flags of any type: bool, string, numeric and object
- [context-aware](https://docs.openfeature.dev/docs/reference/concepts/evaluation-context) evaluation
- [context-aware](https://openfeature.dev/docs/reference/concepts/evaluation-context) evaluation

## 🚀 Usage:

@@ -68,7 +68,7 @@ const boolValue = await client.getBooleanValue('boolFlag', false);
### Context-aware evaluation:

Sometimes the value of a flag must take into account some dynamic criteria about the application or user, such as the user location, IP, email address, or the location of the server.
In OpenFeature, we refer to this as [`targeting`](https://docs.openfeature.dev/specification/glossary#targeting).
In OpenFeature, we refer to this as [`targeting`](https://openfeature.dev/specification/glossary#targeting).
If the flag system you're using supports targeting, you can provide the input data using the `EvaluationContext`.

```typescript
@@ -116,7 +116,7 @@ class MyProvider implements Provider {
}
```
See [here](https://docs.openfeature.dev/docs/reference/technologies/server/javascript) for a catalog of available providers.
See [here](https://openfeature.dev/docs/reference/technologies/server/javascript) for a catalog of available providers.
### Hooks:
@@ -134,7 +134,7 @@ export class GlobalDebugHook implements Hook {
}
```
See [here](https://docs.openfeature.dev/docs/reference/technologies/server/javascript) for a catalog of available hooks.
See [here](https://openfeature.dev/docs/reference/technologies/server/javascript) for a catalog of available hooks.
### Logging:

0 comments on commit 0c2befd

Please sign in to comment.