글을 작성하는 현재 (2022.04) 최신 버전은 18 / LTS는 16 이다. 본 포스팅에서는 14 버전을 설치한다. 1. 패키지 업데이트 [root@localhost ~]# sudo yum -y update 2. yum 저장소 추가 ( https://github.com/nodesource/distributions/blob/master/README.md ) 아래 커맨드 중 원하는 버전 설치 [root@localhost ~]# curl -sL https://rpm.nodesource.com/setup_18.x | sudo bash - // 18 [root@localhost ~]# curl -sL https://rpm.nodesource.com/setup_16.x | sudo bash - // 16 [ro..