Question 3 of 10Pro Only
What is Express.js? Why would you use it instead of the built-in http module?
Sample answer preview
## What is Express.js? Express.js is a **minimal and flexible web application framework** for Node.js. It's the "E" in popular stacks like MERN, MEAN, and MEVN. ## Built-in http vs Express **Using built-in http module:** ```javascript const http = require('http'); const server =…
Express.jsframeworkroutingmiddlewarehttp moduleMERN