node.js 최신판 5.x를 설치해보도록 하자...
1. $ apt-get install curl
2. $ curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
3. $ apt-get install -y nodejs
4. Hello wolrd 를 작성해보자~
에디터를 열어 아래 내용 작성 이름은 server.js ( 적당한 디렉토리에 )
var http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}).listen(8888);
5. $ node server.js
6. http://localhost:8888 접속~! Hello world 확인~!
'dev' 카테고리의 다른 글
우분투 톰캣 9 버전 설치 tubuntu - tomcat9 install (0) | 2018.01.31 |
---|---|
유빗거래소(구 야피존) 해킹 사건 도대체 무슨 일이 있었던 걸까? (0) | 2017.12.19 |
우분투 삼바 설정하기(파일공유) (0) | 2017.12.03 |
[필수] 코인관련 반드시 즐겨찾기 되어있어야할 링크 모음 (0) | 2017.11.27 |
tomcat7 cannot find server.xml in /usr/share/tomcat7/conf (0) | 2017.10.24 |
우분투 서비스 리스트 (0) | 2017.10.23 |
log4sql과 ojdbc6.jar (0) | 2017.10.22 |
메이븐(Maven) + Tomcat 7 플러그인 디플로이 오류 (0) | 2017.10.22 |