임에딘

add test.js

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