본문 바로가기
심심풀이 개발

centos nodejs8 버전 설치

by WebHack 2020. 4. 14.
$ yum install -y gcc-c++ make 	#의존성 패키지 설치
$ curl -sL https://rpm.nodesource.com/setup_8.x | sudo -E bash - # nodejs 최신버전 저장소 설치
$ curl -sL https://rpm.nodesource.com/setup_10.x | sudo -E bash
$ yum install nodejs -y
$ npm install yarn -g
$ npm install pm2 -g

후에 nodeapp 설치는

node_modules 디렉토리를 제외하고 복사

$ npm init
엔터~~
$ npm install​

$ pm2 start server.js --watch

 

 

 

'심심풀이 개발' 카테고리의 다른 글

CSS Flex 정리 잘 된곳  (0) 2020.06.27
data-reactid 삭제 하기  (0) 2020.06.02
C# 멀티스레드  (0) 2011.10.16
자동화 서버는 개체를 작성할 수 없습니다  (0) 2011.06.07
WPF에서 GIF 구현  (0) 2011.04.18