Super Kawaii Cute Cat Kaoani
본문 바로가기
💾 lecture/서버 구축 실습

[GCP] Node.js 설치하기

by wonee1 2025. 4. 6.
728x90

 

 

본 포스팅은 GCP(Google Cloud Platform) VM 인스턴스에서 Node.js 설치를 진행하는 것입니다. 

 

 

🚩 Node.js  설치

 

GCP VM 인스턴스에서 다운로드

 

wget https://nodejs.org/dist/v18.15.0/node-v18.15.0-linux-x64.tar.xz

 

 

 

Node.js 런타임 설치

 

압축해제 및 설정 

 

  • tar xf node-v18.15.0-linux-x64.tar.xz
  • cd node-v18.15.0-linux-x64 
  • sudo cp -Rvi ./{bin,include,lib,share} /usr/local/

 

 

 

다음과 같이 잘 실행되는 걸 확인할 수 있다 

 

 

728x90