Notes After Node.js Introduction
After I ran through the Docker Getting Started tutorial, I went back into the docker container (the one we built as we progressed through the tutorial) and poked around some more. The tutorial template was an Express application, built on Node.js. Since I had parts of this infrastructure in hand, I thought I will just run with it and use Node.js to build a simple web server. The goal is to create a desktop placeholder for an ESP32 acting as a web server, letting me play and experiment quickly without constantly re-flashing my ESP32.
The other motivation was that I wanted to get better at JavaScript. Not necessarily because of the language itself (I'm not a huge fan) but because of the huge community that has sprung up around it, sharing reusable components. I was impressed by what I saw of Node-RED (built on Node.js) and even more impressed when I realized that was only a small subset of the overall Node.js community. More than a few times I've researched a topic and found that there was an available JavaScript tool for doing it. (Like building desktop apps.) I'm tired of looking at this treasure trove from the outside, I want this in my toolbox.
Node.js is available with a Windows installer, but given my recent knowledge, I went instead to their officially published Docker images. Using that to run through Node.js introduction required making a few on-the-fly adaptations to Node.js in a container, but I did not consider that a hinderance. I consider it great container practice! But this only barely scratches the surface of what I can find within the Node.js community. Reading the list of Node.js Frameworks and Tools I realized not only have I not heard about many of these things, I don't even understand the words used to describe them! But there were a lot of great information in that introduction. On the infrastructure side, the live demo code was made possible by Glitch.com, another online development environment I'll mentally file away alongside Cloud9 and StackBlitz.
Even though Google's V8 JavaScript engine is at the heart of both Chrome browser and Node.js server, there are some obviously significant differences between running in a server environment versus running in browser. But sometimes there are concepts from one world that can be useful in the the other, and I was fascinated by people who try to bring these worlds closer together. One example is Browserify which brings some server-side component management features to browser-side code. And Event Emitter is a project working in the other direction, bringing browser-style events to server-side code.
As far as I can tell, the JavaScript language itself was not explicitly designed with a focus on handling asynchronous operations. However, because it evolved in the web world where network latency is an ever-present factor, the ecosystem has developed in that direction out of necessity. The flexibility of the language permitted an evolution into asynchronous callbacks, but "possible" isn't necessarily "elegant" leading to scenarios like callback hell. To make asynchronous callbacks a little more explicit, JavaScript Promise
was introduced to help improve code readability. There's even a tool to convert old-school callbacks into Promises. But as nice as that was, people saw room for improvement, and they built on top of Promises to create the much more easier-to-read async/await
pattern for performing asynchronous operations in JavaScript. Anything that makes JavaScript easier to read is a win in my book.
With such an enormous ecosystem, it's clear I can spend a lot more time learning Node.js. There are plenty of resources online like Node School to do so, but I wanted to maintain some resemblance of focus on my little rover project. So I went back to the Docker getting started tutorial and researching how to adapt it to my needs. I started looking at a tool called webpack
to distill everything into a few static files I can serve from an ESP32, but then I decided I should be able to keep my project simple enough I wouldn't need webpack. And for serving static files, I learned Express would be overkill. There's a Node.js module node-static
available for serving static files so I'll start by using that and build up as needed from there. This gives me enough of a starting point on server side so I can start looking at the client side.