언어/node.js +2

stu1

언어/node.js2016. 5. 27. 17:47


'언어 > node.js' 카테고리의 다른 글

아직은 걸음마  (0) 2016.02.08

var http = require('http');
http.createServer(
        function(request, response){
            console.log("Request resceived.");
            response.writeHead(200);
            response.write("hello. i am kim jun hyeon");
            response.end();
        }
).listen(3000);

console.log('Listening on port 3000');

'언어 > node.js' 카테고리의 다른 글

stu1  (0) 2016.05.27