Node.js realtime communication with ESP8266 via socket.io
Node.js realtime communication with NodeMCU with socket.io Reference: https://salfade.com/tutorials/realtime-communication-with-nodemcu-with-socketio Goal of this post Establish a real-time communication between a server and the NodeMCU, this can be really useful like a situation where the server has to notify the client asynchronously, Let’s get started with the back-end We are going to use a Node server, where we can integrate Socket.io init. Install Node.js if you haven’t it yet. In node, we ‘ll be using the framework called express to deal with the communication with HTTP requests.
…