Node.js Day1
How 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 ...
happy900.hashnode.dev3 min read