Skip to content
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

Replace accepts with negotiator #197

Merged
merged 1 commit into from
Oct 25, 2024
Merged

Replace accepts with negotiator #197

merged 1 commit into from
Oct 25, 2024

Conversation

blakeembrey
Copy link
Member

@blakeembrey blakeembrey commented Oct 24, 2024

Follow up to #194 (comment).

method = accept.encoding(['gzip', 'identity'])
}
var negotiator = new Negotiator(req)
var method = negotiator.encoding(['gzip', 'deflate', 'identity'], ['gzip'])
Copy link
Member Author

@blakeembrey blakeembrey Oct 24, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When you add brotli, just add it here:

Suggested change
var method = negotiator.encoding(['gzip', 'deflate', 'identity'], ['gzip'])
var method = negotiator.encoding(hasBrotli ? ['br', 'gzip', 'deflate', 'identity'] : ['gzip', 'deflate', 'identity'], hasBrotli ? ['br', 'gzip'] : ['gzip'])

Edit: Could be better to store in global vars, e.g.

var SUPPORTED_ENCODING = hasBrotli ? ['br', 'gzip', 'deflate', 'identity'] : ['gzip', 'deflate', 'identity']; 
var PREFERRED_ENCODING = hasBrotli ? ['br', 'gzip'] : ['gzip'];

@bjohansebas bjohansebas merged commit d3560e0 into master Oct 25, 2024
54 checks passed
@blakeembrey blakeembrey deleted the be/use-negotiator branch October 25, 2024 21:26
@jonchurch jonchurch mentioned this pull request Oct 26, 2024
@UlisesGascon UlisesGascon mentioned this pull request Oct 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants