Express

Let’s find out how the the building blocks of Express work and why we need them.

Previously, we discussed Node.js and its core features. Now, let’s talk about Express and see why it might be worth using, even if Node.js already does everything we need.

Express is an open-source, fast, minimalist, and unopinionated Node.js framework. It adds more functionality to Node.js through the provision of middleware and routing (we’ll discuss these terms at length soon). Express has rapidly become the most widely-used, standard server framework for Node.js.

Here’s a ...