Basic Node
npm init
node 'index.js'
import http from 'http'
const server = http.createServer(function(req,res){
if(req.url == '/'){
res.end("this is Saini From Saharanpur");
}
else if(req.url == '/about'){
res.end("This is About");
}else if(req.url == '/contact'){
res.end("Contact Page");
}else{
res.end("Page Not Found");
}
});
server.listen(5000,function(){
console.log("from server ");
});
Comments
Post a Comment
Please Enter Your View And Feedback About This Page