Table of Contents |
---|
...
Node.js 설치
Yum으로 설치
Repo 추가
Nodejs v14
curl -sL https://rpm.nodesource.com/setup_14.x | sudo -E bash -
Yum install
yum install nodejs -y
[권장] NVM으로 설치(버전 관리용)
nvm은 버전을 변경하기 용이함node 버전 관리 툴을 의미. ICE4의 경우 Node 버전 대응이 빠른 편으로 NVM으로 설치하는것이 버전 변경이 수월
NVM 설치
NVM 설치
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash
...
Node 버전 등록
nvm use v14.16.1
Yum 설치
Repo 추가
Nodejs v14
curl -sL https://rpm.nodesource.com/setup_14.x | sudo -E bash -
Yum install
yum install nodejs -y
[폐쇠망 추천] Node.js binary 설치
...
https://github.com/yarnpkg/yarn/releases
...
프로젝트 Git에 commit
...
실행예시
cd {프로젝트}
./yarn-1.22.10.js run start:dev
...