一、下载包
https://registry.npmmirror.com/binary.html?path=node/
比如:10.9.0
https://registry.npmmirror.com/binary.html?path=node/v10.9.0/
按需下载
https://registry.npmmirror.com/-/binary/node/v10.9.0/node-v10.9.0-linux-x64.tar.gz
二、上传到服务器解压、安装
#复制压缩包
cp /mnt/f/迅雷下载/node-v10.9.0-linux-x64.tar.gz /usr/local
#进入目录
cd /usr/local
#加压压缩包
tar xf node-v10.9.0-linux-x64.tar.gz
#查看压缩包
ls
#重命名文件夹
mv node-v10.9.0-linux-x64 node
ls
cd node
ls
cd bin
history
#配置环境变量
vi ~/.bashrc
#配置文件末尾输入
export NODEJS_HOME=/usr/local/node/bin
export PATH=$NODEJS_HOME:$PATH
#刷新配置
source ~/.bashrc
#验证
node -v
npm -v
文章来源:https://www.toymoban.com/news/detail-506482.html
文章来源地址https://www.toymoban.com/news/detail-506482.html
三、配置国内源
// 查询源
npm config get registry
// 更换国内源
npm config set registry https://registry.npmmirror.com
// 恢复官方源
npm config set registry https://registry.yarnpkg.com
// 删除注册表
npm config delete registry
到了这里,关于Linux安装nodejs的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!