http3000.js 263 Bytes
var http = require('http'); 

http.createServer(function(req,res){ 
    res.writeHead(200,{'Content-Type':'text/plain'}); 
    res.end('Hello  Node.js ss\n'+req.url+'--port  3000'); 
}).listen(3000,function(){
	console.log('NodeJS Server running at 3000'); 
});