본문 바로가기

개발 일기/NodeJS

[Node] EC2에 Node.js 설치하기 #npm#EC2

 

https://docs.aws.amazon.com/ko_kr/sdk-for-javascript/v2/developer-guide/setting-up-node-on-ec2-instance.html

자습서: Amazon EC2 인스턴스에서 Node.js 설정

docs.aws.amazon.com

 

자습서에 있는 내용이다.

 

1. nvm 먼저 설치

$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash

 

- 참고

 

nvm-sh/nvm

Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions - nvm-sh/nvm

github.com

여기서 v0.34.0에 해당하는 버전의 정보를 받아 볼 수 있다. 개인적으로는 최신 버전 설치를 좋아한다.

 

2. nvm 활성화

$ . ~/.nvm/nvm.sh

 

3. node 설치

$ nvm install node

 

이렇게 하면 ec2에서 npm을 사용할 수 있다!!