This repository was archived by the owner on Jan 11, 2023. It is now read-only.
Added getHeader and setHeader to the preload context #1517
Closed
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.
Fixes #1354 by adding
getHeader
(for request headers) andsetHeader
(for response headers) to the preload context.A possible argument against this solution is that it allows less flexibility than just exposing the
req
andres
objects directly. Evidence of this would be that there are more header-related functions you might want such asgetHeaderNames
.On the other hand I think this covers the vast majority of use cases and gives the user fewer possibilities to screw up.
It's also possible to argue that it's confusing that that
getHeader
operates on request headers andsetHeader
on response headers, though, here too, in the vast majority of cases this is what you want. If you want to do anything more complex you should look into middleware.If the consensus is we should do this differently, I'm happy to change it.
(I also took the opportunity to extract the
fetch
function used in preload into a different file, sinceget_page_handler
is quite long and hard to overview)Before submitting the PR, please make sure you do the following
Tests
npm test
and lint the project withnpm run lint