Node JS -- First Program


let http=require('http')

http.createServer((req,res)=>{

res.writeHead(200,{contentType:"application/json"});
res.end("<h1>Computer Test</h1>");
}).listen(8080);

Comments

Popular posts from this blog

App 1st User Define Component

Example 1

Rabiit