[CentOS] Node.js 및 NPM 설치DevOps/Linux2022. 12. 22. 11:10
Table of Contents
반응형
리눅스 환경에서 Node.js 와 NPM 설치하는 방법에 대해 알아보겠습니다.
운영환경
- CentOS 7.6
저장소 추가
설치하려는 Node.js 버전을 확인하여 NodeSource yum 저장소를 추가합니다.
NodeSource Node.js Binary Distributions 사이트에 아래와 같은 내용이 정리되어 있습니다.
Node.js v19.x
# As root
$ curl -fsSL https://rpm.nodesource.com/setup_19.x | bash -
# No root privileges
$ curl -fsSL https://rpm.nodesource.com/setup_19.x | sudo bash -
Node.js v18.x
# As root
$ curl -fsSL https://rpm.nodesource.com/setup_18.x | bash -
# No root privileges
$ curl -fsSL https://rpm.nodesource.com/setup_18.x | sudo bash -
Node.js v16.x
# As root
$ curl -fsSL https://rpm.nodesource.com/setup_16.x | bash -
# No root privileges
$ curl -fsSL https://rpm.nodesource.com/setup_16.x | sudo bash -
Node.js v14.x
# As root
$ curl -fsSL https://rpm.nodesource.com/setup_14.x | bash -
# No root privileges
$ curl -fsSL https://rpm.nodesource.com/setup_14.x | sudo bash -
Node.js LTS (18.x)
# As root
$ curl -fsSL https://rpm.nodesource.com/setup_lts.x | bash -
# No root privileges
$ curl -fsSL https://rpm.nodesource.com/setup_lts.x | sudo bash -
Node.js Current (19.x)
# As root
$ curl -fsSL https://rpm.nodesource.com/setup_current.x | bash -
# No root privileges
$ curl -fsSL https://rpm.nodesource.com/setup_current.x | sudo bash -
설치
yum을 사용하여 Node.js 및 npm을 설치합니다. Node.js 14 버전을 설치해 보도록 하겠습니다.
$ curl -fsSL https://rpm.nodesource.com/setup_14.x | bash -
$ yum install -y nodejs
설치 확인
다음 명령어를 통해 설치된 버전을 확인할 수 있습니다.
$ node --version
v14.20.0
$ npm --version
6.14.17
참고
반응형
'DevOps > Linux' 카테고리의 다른 글
[CentOS] netstat 사용 포트 확인 (0) | 2023.01.03 |
---|---|
[CentOS] PM2 서비스 등록 (0) | 2022.12.30 |
[CentOS] 사용자 계정 관리 (0) | 2022.12.17 |
리눅스 명령어 (0) | 2022.12.15 |
[CentOS] Service 등록 및 실행 방법 (0) | 2022.11.15 |
@고지니어스 :: 규니의 개발 블로그
IT 기술과 개발 내용을 포스팅하는 블로그
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!