centos上yum安装nodeJS

Posted 我是谁???

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos上yum安装nodeJS相关的知识,希望对你有一定的参考价值。

更新node.js各版本yum源

Node.js v8.x安装命令

curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -

Node.js v7.x安装命令

curl --silent --location https://rpm.nodesource.com/setup_7.x | bash -

Node.js v6.x安装命令

curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -

Node.js v5.x安装命令

curl --silent --location https://rpm.nodesource.com/setup_5.x | bash -

yum安装node.js

yum install -y nodejs

查看node.js版本

node -v

node.js版本管理器n

安装n

npm install -g n

版本管理

安装指定版本

n <version>

安装最新版本

n latest

安装稳定版本

n stable

删除某个版本

n rm <version> 

查看所有版本

n list

 

以上是关于centos上yum安装nodeJS的主要内容,如果未能解决你的问题,请参考以下文章

CentOS 下使用yum安装nodejs

centos7下用yum install 安装nodejs,默认装在哪个目录了

CENTOS7 yum安装npm和nodejs

Centos7下yum安装nodejs

Centos6.5 nodejs6.6 yum源安装

centos7上安装nodejs