http3003.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  3003'); 
}).listen(3003,function(){
	console.log('NodeJS Server running at 3003'); 
});