SMSumanta Mohantainhappy900.hashnode.dev·Jul 8, 2025 · 3 min readNode.js Day1How to create a Web Server ? First We need to have a module , which is http , let’s import it. Why it is necessary ? Cause it will help us to create server for later on. const http = require('http'); After importing http , there is a method which ...10