Introduction to Express.js: A Beginner's Guide
HTTP Basic
const http = require('http');
const server = http.createServer((req, res) => {
const url = req.url;
// Home page
if (url === '/') {
res.writeHead(200, { 'content-type': 'text/html' });
res.write('<h1>home page</h1>');
r...
keshavcarpenter.hashnode.dev7 min read