댓글
-
2011년이면 오래되었네요.한 번 갱신 해 주셨으면 좋겠다요.ㅠㅠ
-
유투브에 나와있는거 대로 치시면 안되더라구요
hello world 띄우는데 바로밑에 undefined 가 나오는것은
콘솔창에
module.exports.repl.ignoreUndefined = true;
이거 한번 추가하시면 되고,
node 웹페이지 접근하게하는것은
##################################
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, "127.0.0.1");
console.log('Server running at http://127.0.0.1:1337/');
##################################
여기에있는거 쓰시면 될것같네요
버전은 node-v0.10.26 이었습니다. -
네..많이 바뀐거같네요^^;
-
Node.js에 많은 관심이 있었는데....
이렇게 알기 쉽게 동영상 올려주셔서 정말 감사합니다... -
node.js 가 지금 0.10... 많이 바뀌었네요