美文网首页
CentOS 安装 Node.js

CentOS 安装 Node.js

作者: JackZhangZzz | 来源:发表于2020-04-04 13:36 被阅读0次

    yum 直接安装

    如果安装 10.x:

    curl -sL[https://rpm.nodesource.com/setup_10.x](https://rpm.nodesource.com/setup_10.x)| bash -
    

    最新版:

    curl -sL[https://rpm.nodesource.com/setup_13.x](https://rpm.nodesource.com/setup_13.x)| sudo -E bash -
    

    稳定版:

    curl -sL[https://rpm.nodesource.com/setup_12.x](https://rpm.nodesource.com/setup_12.x)| sudo -E bash -
    
    sudo yum clean all && sudo yum makecache fast
     
    sudo yum install -y gcc-c++ make
    
    sudo yum install -y nodejs
    

    nvm 安装

    直接从github上clone NVM 项目源码到本地

    git clone https://github.com/creationix/nvm.git 完成后需要执行下载下来的nvm文件
    
    source nvm/nvm.sh
    
    nvm --version 查看 nvm 版本
    
    nvm install 12.16 下载 node.js 12.16 版本
    

    http://helloreact.cn
    HoServer : 开箱即用后台服务和管理平台脚手架
    HoAppBase : 开箱即用跨平台App脚手架

    相关文章

      网友评论

          本文标题:CentOS 安装 Node.js

          本文链接:https://www.haomeiwen.com/subject/igxjphtx.html