How to do HTTP/2 requests, using Node.js. and the fetch-h2 package.
Raspberry Pi HTTP/2 server: Receiving GET request from a ESP32
How to send a GET request from an ESP32 to a Node.js HTTP/2 server running on a Raspberry Pi 3.
Raspberry Pi 3: HTTP/2 server setup
How to run a HTTP/2 server on the Raspberry Pi 3, using Node..js
ESP32: HTTP/2 GET request to Node.js server
In this tutorial we will check how to make a HTTP/2 GET request from the ESP32 to a Node.js server. The tests shown on this tutorial were performed using an ESP32 board from DFRobot. Introduction In this tutorial we will check how to make a HTTP/2 GET request from the ESP32 to a Node.js server. The ESP32 …
Continue reading "ESP32: HTTP/2 GET request to Node.js server"
Node.js HTTP/2 server: obtain request method
In this tutorial we will check how to obtain the method of a request performed to a HTTP/2 Node.js server. Introduction In this tutorial we will check how to obtain the method of a request performed to a HTTP/2 Node.js server. Note that we have already covered how to setup a very simple HTTP/2 webserver …
Continue reading "Node.js HTTP/2 server: obtain request method"
Node.js: HTTP/2 server setup
In this tutorial we will check how to setup a very simple HTTP/2 server using node.js. We will be using the HTTP/2 module to setup the server and a web browser as client. Introduction In this tutorial we will check how to setup a very simple HTTP/2 server using node.js. We will be using the HTTP/2 …
ESP32: HTTP/2 POST request with headers
In this tutorial we will check how to send a HTTP/2 POST request with headers defined in our program, using the ESP32 and the Arduino core. The tests were performed using a DFRobot’s ESP32 module integrated in a ESP32 development board. Introduction In this tutorial we will check how to send a HTTP/2 POST request with headers defined …
ESP32 HTTP/2: Decompressing Brotli encoded content
In this tutorial we are going to check how to do a HTTP/2 GET request, accepting the content compressed with the Brotli algorithm. Thus, we will later decompress it back, after receiving the response. The tests were performed using a DFRobot’s ESP32 module integrated in a ESP32 development board. Introduction In this tutorial we are going to check …
Continue reading "ESP32 HTTP/2: Decompressing Brotli encoded content"
ESP32 Arduino HTTP2: Using query parameters
In this tutorial we will check how to add query parameters to a HTTP2 GET request sent from the ESP32, using the Arduino core. The tests were performed using a DFRobot’s ESP32 module integrated in a ESP32 development board. Introduction In this tutorial we will check how to add query parameters to a HTTP2 GET request sent from …
Continue reading "ESP32 Arduino HTTP2: Using query parameters"
ESP32 HTTP/2: GET request with continuous stream response
In this tutorial we will test making a HTTP/2 GET request to a endpoint that will leave a stream open and periodically send data back to the client with the current date and time. The tests were performed using a DFRobot’s ESP32 module integrated in a ESP32 development board. Introduction In this tutorial we will test making a …
Continue reading "ESP32 HTTP/2: GET request with continuous stream response"