-
Notifications
You must be signed in to change notification settings - Fork 36
docs: Nest SDK #750
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
docs: Nest SDK #750
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
4dd59c4
docs: add quick start
luizgribeiro d837440
chore: add jsdocs
luizgribeiro cad673a
Update packages/nest/README.md
luizgribeiro 88bf4f7
Update packages/nest/src/open-feature.module.ts
luizgribeiro 04e92b7
Update packages/nest/README.md
luizgribeiro f0c9afe
Update packages/nest/README.md
luizgribeiro c527bc9
Update packages/nest/README.md
luizgribeiro 9f1b5f6
Update packages/nest/src/evaluation-context-interceptor.ts
luizgribeiro 3de4dff
docs: fix minor issues
luizgribeiro de8aa97
Update packages/nest/src/evaluation-context-interceptor.ts
lukas-reining 87f1b51
docs: specify peer deps
luizgribeiro 34e70d5
Update packages/nest/README.md
luizgribeiro 1f932e6
Update packages/nest/README.md
luizgribeiro 3564be5
Update packages/nest/README.md
luizgribeiro 4035c25
Update packages/nest/README.md
luizgribeiro d7801d3
Merge branch 'docs/NextSDK' of github.com:luizgribeiro/openfeature-js…
luizgribeiro 3c33c06
docs: add badge
luizgribeiro 988853b
docs: change badge order and remove line breaks
luizgribeiro 73547b4
Merge branch 'main' into docs/NextSDK
luizgribeiro c759819
docs: add missing peer deps
luizgribeiro 6d62232
Merge branch 'docs/NextSDK' of github.com:luizgribeiro/openfeature-js…
luizgribeiro 49072d6
Update packages/nest/README.md
luizgribeiro 8948eda
Update packages/nest/README.md
luizgribeiro 82ede1e
Update packages/nest/README.md
luizgribeiro 529178b
Update packages/nest/README.md
lukas-reining File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should rename this to
OpenFeatureClient
before we remove theexperimental
. I think justFeatureClient
is a bit disjointed, since we have tended to either add the entire "OpenFeature" prefix, or leave it off. I thinkOpenFeatureClient
would be best, because the client inteface is calledClient
so it won't clash, and it's consistent with the equivalent in react (</OpenFeatureProvider>
).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It has been
OpenFeatureClient
before, butOpenFeatureClient
is used for the implementation of theClient
and it is also exported from the Server SDK.We could remove the export of
OpenFeatureClient
from the Web SDK, as no one should use and import this directly anyways I would say. I have seen it several times that this type was used instead ofClient
in projects.If we remove this I would be happy calling the interface
OpenFeatureClient
here. What do you think @toddbaert?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you think @toddbaert?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for the late reply - if we can remove that export, I'm fine with it! It's an improvement.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @toddbaert, removing this should be considered a breaking change I would say.
I am not sure how we want to continue on this then. What do you think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm, well, if I understand correctly, it would be technically breaking, but I think it could be argued it was a misuse. All our doc recommends using the interface.
If we want to be really strict, we could consider it a break and include it with some others I have in mind in a 2.0.0 (meaning to ask you guys about this soon... there's a small list of breaking improvements I think might be worth considering)...