임에딘

add test.js

Showing 1 changed file with 6 additions and 0 deletions
var http = require('http');
http.createServer(function(req,res){
res.writeHead(200, {'Content-Type':'text/html'});
res.end('Hello World!');
}).listen(8080);