This project explores the core fundamentals of Node.js by building a web server from scratch without using any frameworks.
Handling routes manually using the 'http' module and 'fs' to serve index.html.
const http = require('http');
const fs = require('fs');
http.createServer(() => {
console.log("Server running");
});
The goal is to build a strong backend foundation and move from basic scripting to real-world application development.