UNPKG

collegeapp

Version:

My College Application

17 lines (13 loc) 348 B
var student=require('./Module1') var http=require('http') http.createServer(function (req,res) { stu=new student('Mohit','Indore','REACT') stu.Show(); res.write("Wel COme To NodeJS") res.end(); }).listen(4400,function (err,res) { if(err) console.log("Server Not Connect : "+err) else console.log("Server Connect") })