Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

...

Node.js 설치

NVM으로 설치(버전 관리용)

nvm은 버전을 변경하기 용이함

NVM 설치

  1. NVM 설치

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash

2. NVM 환경변수 등록

~/.nvm/nvm.sh

Node 설치

nvm install node

nvm install v14.16.1

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 설치

다운로드 Node.js tar파일

https://nodejs.org/en/download/

...