# centos 安装 nodejs {#centos-安装-nodejs}
本文讲述 centos 系统上安装 nodejs 环境的步骤。
# 约定 {#约定}
CentOS-7-x86_64-Minimal-1503-01
# 安装 {#安装}
yum install epel-release
yum install npm
# 安装验证 {#安装验证}
vi /root/test.js
console.log("hello world");
node /root/test.js