
In HTTP/2, multiple requests between the client and the server are sent over the same TCP connection.

To understand how to implement HTTP/2, we should first understand how requests are made between the client and server. If you just want to see the example code, you can view the repo on Github HTTP/2 Connections and Sessions # In the next few sections, we will understand these features in detail, and also learn how to implement them as a client and server using the Node.js http2 standard library. HTTP/2 is the next version of the Hyper Text Transport Protocol (HTTP), which adds many features and optimizations over the previous version. This post will explain what HTTP/2 is, and how we can make use of its features in Node.js.
