카테고리 없음

[Node.js] Node.js 설치

[우분투 리눅스  /  Node.js 12버전 기준 ]

// build-essential , curl 설치, 설치된 경우라면 생략하면됨.

 

$ sudo apt-get update

$ sudo apt-get install -y build-essential

$ sudo apt-get install curl

$ curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash

$ sudo apt-get install -y nodejs

 

 

 

// 노드 버전 확인

$ node -v

$ npm -v