Profile

About Project

Project Overview

This project explores the core fundamentals of Node.js by building a web server from scratch without using any frameworks.

Manual Routing

Handling routes manually using the 'http' module and 'fs' to serve index.html.

server.js
const http = require('http');
const fs = require('fs');

http.createServer(() => {
  console.log("Server running");
});
It focuses on understanding how things work behind the scenes — including HTTP handling, file systems, routing, and static file serving.

The goal is to build a strong backend foundation and move from basic scripting to real-world application development.