June 2022
Intermediate to advanced
410 pages
5h 8m
English
In this chapter, you’ll create a web server application that constructs and returns simple web pages. It will help you become more familiar with:
You created a small web server application in Chapter 3. It’s fast, and it works well, but a complex web application requires features such as URL routing, query string parsing, posted data decoding, HTML templates, image serving, and more. You could write this yourself, but much of that effort is already implemented in Express.
Express is a Node.js web server framework that promotes itself as “fast, unopinionated, and minimalist”. It allows you to ...
Read now
Unlock full access