오류상황
인터넷에 있는 예제 따라쳤는데 안됨
var http= require('http');
http.createServer(function (req,res){
res.writeHead(200,{'Content-Type':'text/plain'});
res.end('Hello world');
}).listen(1337,'127.0.01');
console.log('server running at http://127.0.0.1:1337');
오류원인
코드의 IP 잘못 잡아줘서!
근데 127.0.0.1은 Localhost 얘기하는거니까 상관없는거 아닌가...?
[ 2016년08월02 추가내용 ]
127.0.0.1 == localhost
but 나는 127.0.01 오타!!
반응형
'오류관리' 카테고리의 다른 글
[NPM] install Couldn't read dependencies (0) | 2016.07.21 |
---|---|
[NodeJS] npm WARN Building the local index for the first time, please be patient (0) | 2016.07.21 |
[SVN] E175002 (0) | 2016.05.20 |
[SVN] Synchronize 안먹힐때 (4) | 2016.05.10 |
[WEB] Deferred long-running timer task(s) to improve scrolling smoothness. (0) | 2016.05.10 |