-
Notifications
You must be signed in to change notification settings - Fork 29.9k
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
doc: add note about browsers and HTTP/2 #19476
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,8 +24,9 @@ be emitted either by client-side code or server-side code. | |
|
||
### Server-side example | ||
|
||
The following illustrates a simple, plain-text HTTP/2 server using the | ||
Core API: | ||
The following illustrates a simple HTTP/2 server using the Core API. | ||
Note the use of [`http2.createSecureServer()`][] since HTTPS is required | ||
for [most web browsers](https://caniuse.com/#feat=http2). | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would say something like...
Using Unencrypted HTTP/2 would actually be the preference when running purely within internal environments with non-browser clients. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okie dokie 👍 |
||
```js | ||
const http2 = require('http2'); | ||
|
@@ -252,7 +253,7 @@ and would instead register a handler for the `'stream'` event emitted by the | |
```js | ||
const http2 = require('http2'); | ||
|
||
// Create a plain-text HTTP/2 server | ||
// Create a simple HTTP/2 server | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the term There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How about using the term There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd be good with that. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sounds good to me 👍 |
||
const server = http2.createServer(); | ||
|
||
server.on('stream', (stream, headers) => { | ||
|
@@ -1730,7 +1731,9 @@ instances. | |
```js | ||
const http2 = require('http2'); | ||
|
||
// Create a plain-text HTTP/2 server | ||
// Create a simple HTTP/2 server | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can you restore this to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I changed to |
||
// This will not work in most browsers, | ||
// Try http2.createSecureServer instead | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A nit: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Any thoughts on usage of periods There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's see what others think, I am not a native speaker) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I added periods. |
||
const server = http2.createServer(); | ||
|
||
server.on('stream', (stream, headers) => { | ||
|
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.
No browsers support unencrypted HTTP2 (HTTP/2 spec FAQ)
You can change this to "since no browsers support unencrypted HTTP2" with the link to HTTP/2 spec FAQ
Ditto for line 1735