feat(platform-server): Expose XHR client used in platform-server/http #34111
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.
PR Checklist
Please check if your PR fulfills the following requirements:
PR Type
What kind of change does this PR introduce?
What is the current behavior?
I wish to attach cookies to HTTP requests during SSR.
But
cookie
is a restricted header in node-xhr2So I'm using the following #15730 (comment)
Everything works fine.
But then I noticed that this works only if the
xhr2
resolved inimport * as xhr2 from 'xhr2'
is the actual one used by platform-server/src/http.ts.Meaning that, if I add the dependency
xhr2
in thepackage.json
of my project, then the imported xhr2 will be considered as a new instance. Because of that, platform-server/http's xhr2 cookies setting remains unchanged (because I'm actually changing the settings of that new instance, not the one of platform-server/http).What is the new behavior?
This Pull Request is to expose the XHR client used in platform-server/http, so that anyone can tweak it the way they want, especially for SSR-related issues.
Does this PR introduce a breaking change?
Other information