반응형
window
https://24hours-beginner.tistory.com/18
Ubuntu Server 18.04 Node.js and npm install
sudo apt remove --purge nodejs npm
sudo apt clean
sudo apt autoclean
sudo apt install -f
sudo apt autoremove
Find the latest version at https://github.com/nodesource/distributions#debinstall Latest version 10.x now
sudo apt install curl
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install -y nodejs
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
sudo apt-get update && sudo apt-get install yarn
npm -version
6.1.0
nodejs -v
v10.7.0
반응형
'프로젝트 설정 > 기타' 카테고리의 다른 글
[암호화] bcrypt로 암호화 시작하기 (python) (0) | 2021.04.14 |
---|---|
HTTPS / SSL / TLS (0) | 2021.03.09 |
NCLOUD 사용기 (서버생성) (0) | 2021.02.15 |
[GIT] reset 한거 취소하는 방법 (0) | 2020.03.18 |
SSH Key 여러개 관리하기 (git) (0) | 2020.03.10 |