Back-End/Node.js
우분투(Ubuntu) node 설치
여의도스토리
2020. 8. 7. 14:17
$sudo apt-get update
$sudo apt-get install -y build-essential
# curl 이 설지 안된경우 설치
$sudo apt-get install curl
$curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash --
$sudo apt-get install -y nodejs
# 설치확인
$node -v
$npm -v