首页 > Web开发 > 详细

centOS 通过yum 安装nodejs和npm

时间:2020-07-25 20:39:46      阅读:85      评论:0      收藏:0      [点我收藏+]

官方查看有哪些版本,查找自己想要的nodejs源

https://github.com/nodesource/distributions

技术分享图片

 

 

 

比如我安装14.x

技术分享图片

 

 

先安装源:

curl -sL https://rpm.nodesource.com/setup_14.x | bash -

技术分享图片

 

 

然后:

yum -y install nodejs

通过:node -v  和npm -v 查看版本,说明安装成功

 

替换为淘宝NPM镜像

首先我们可以查看原本的镜像地址:

npm get registry
https://registry.npmjs.org/

然后替换成淘宝的:

npm config set registry http://registry.npm.taobao.org/

如果想恢复原来的镜像地址:

npm config set registry https://registry.npmjs.org/

如果用淘宝定制的cnpm工具来代替默认的npm:

 

npm install -g cnpm --registry=https://registry.npm.taobao.org

 

centOS 通过yum 安装nodejs和npm

原文:https://www.cnblogs.com/nsky/p/13376349.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!