- ALL
- java33
- linux32
- 工具17
- 其他14
- 数据库7
- git5
- nas5
- vue5
- 前端5
- ai3
- framework3
- windows3
- app2
- 脚本2
- docker2
- 智能家居2
- hexo2
- 小程序2
- maven2
- spring2
- api1
- 资源1
- mysql1
- markdown1
- 安全1
- python1
- question1
- 运维1
- 数据传输1
- 数据结构1
- nginx1
CenterOS中安装node
安装 方式一 123curl -sL https://rpm.nodesource.com/setup_10.x | bash -yum install -y nodejs 方式二 1wget https://nodejs.org/dist/v14.16.0/node-v14.16.0-linux-x64.tar.xz && xz -d node-v14.16.0-linux-x64.tar.xz && tar -xvf node-v14.16.0-linux-x64.tar 配置环境变量 1234567export NODE_HOME=/root/node-v14.16.0-linux-x64export PATH=$PATH:$PATH:$NODE_HOME/binexport NODE_PATH=$NODE_HOME/lib/node_modulessource /etc/profile 其他命令 1234567891011121314151617//清除nodejs的cachesudo npm cache clean -f...