반응형
이 글에서는 ubuntu 18.04에 Node.js를 설치하는 방법을 서술한다.
환경
ubuntu: 18.04
node.js: v16.15.0 (설치할 버전)
Node.js 설치
1. curl 설치
- 설치 되어있다면 건너뛰어도된다.
$ sudo apt-get install curl
2. PPA를 추가
$ curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
3. node.js 설치
$ sudo apt-get install -y nodejs
4. 설치가 끝난후 버전 확인
$ node -v
위 사진처럼 노드 버전에 대한 정보가 나오면 설치는 성공적으로 완료 되었다.
반응형
'Programming > Node.js' 카테고리의 다른 글
[Node.js] Error: bind EADDRINUSE null:80 (0) | 2022.12.08 |
---|---|
[Node.js] node.js에서 메모리 사용량을 확인하는 방법 (0) | 2022.11.29 |
[Node.js] Node.js에서 base64로 문자열 Encoding, Decoding 하는 방법 (2) | 2022.08.30 |
[Node.js] Express.js에서 Multer로 S3에 이미지를 여러장 업로드하는 방법 (0) | 2022.08.12 |
[Node.js] node.js에서 object를 s3에 올리는 방법 (1) | 2022.07.03 |