首页 > 代码库 > nodejs环境搭建

nodejs环境搭建

1、下载nodeJS

下载地址:https://nodejs.org/en/download/

因为我的系统是Linux 的,所以下载已经编译好的Linux,nodejs tar包

技术分享

3、下载完成过后放到/usr/local/下面

技术分享

4、解压:因为这个包不是gz的包所以解压

正确:

# tar -xvf node-v6.11.0-linux-x64.tar.xz 

 错误:

# tar -zxvf node-v6.11.0-linux-x64.tar.xz 

5.配置环境:

# vi /etc/profile

加入:

#set node
export NODE_HOME=/usr/local/node
export PATH=$PATH:$NODE_HOME/bin

退出,刷新环境变量

# source /etc/profile

6、测试

技术分享

成功!!!!!!!!!!!!!

 

nodejs环境搭建