node.js

node.js 소개

댓글

댓글 본문
  1. 나무마루
    2011년이면 오래되었네요.한 번 갱신 해 주셨으면 좋겠다요.ㅠㅠ
  2. 재시카
    유투브에 나와있는거 대로 치시면 안되더라구요

    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 이었습니다.
  3. 재시카
    네..많이 바뀐거같네요^^;
  4. 봉우리
    Node.js에 많은 관심이 있었는데....

    이렇게 알기 쉽게 동영상 올려주셔서 정말 감사합니다...
  5. node.js 가 지금 0.10... 많이 바뀌었네요
버전 관리
egoing
현재 버전
선택 버전
graphittie 자세히 보기