CENTOS7 + VirtualBox 세팅기 썸네일형 리스트형 centos nodejs 설치 # Install Node.js 7.x repository (7.x 버전부터는 아래 추가) curl -sL https://rpm.nodesource.com/setup_7.x | bash - # Install Node.js and npm yum install nodejs yum install npm nodejs #설치/버전 확인 node -v npm -v #웹서버 설치하여 페이지 확인 vi /home/basic.js ------------------------------------------- var http = require('http'); var hostname = 'host이름 or ip 주소입력'; var port = 3000; http.createServer(function(req, res){ r.. 더보기 이전 1 다음