node.js 설치


# yum install npm
# npm --version
# yum install node.js
# node --version
# vi hello.js

	console.log("hello world")
	
# node hello.js

 

● 만약 yum 으로 설치되지 않는다면

# yum install epel-release

다음과 같은 epel 저장소 추가 후 설치.

 

+ Recent posts