Nodejs 설치하기


  1. build-essential  설치하기
$ sudo apt-get update
$ sudo apt-get install -y build-essential

: build-essential 이 설치되어 있어야 다양한 C나 파이썬이 미리 설치되어

node 설치 전에 native library 기반의 모듈들도 원활하게 돌릴 수 있으므로 설치해줍니다.

  1. Github 저장소를 이용, Nodejs 설

Untitled

노드 깃 허브 저장소 (https://github.com/nodesource/distributions) 로 들어가

README.md 의 Installation instructions 를 보면서 설치해줍니다.

$ curl -fsSL <https://deb.nodesource.com/setup_16.x> | sudo -E bash -
$ sudo apt-get install -y nodejs

프로젝트 설정하기


  1. clone 하기