1. ์๋ฒ ์์ฑ var http = require('http'); http.createServer(function (request, response) { response.writeHead(200, {'Content-Type': 'text/plain'}); response.end('Hello World\n'); }).listen(8000); console.log('Server running at http://localhost:8000/'); 2. ์๋ฒ ์คํ node ํ์ผ๋ช 3. ํ ์คํธ