Creating Routes and Handling Requests with Express
The first time I created a server using pure Node.js… it felt cool.But also… a little painful.
I had code like this:
const http = require("http");
const server = http.createServer((req, res) => {
i
codexninja.hashnode.dev6 min read