美文网首页
ubuntu安装node环境

ubuntu安装node环境

作者: thx_c619 | 来源:发表于2020-07-22 21:25 被阅读0次

    前言

    本文只记录操作,不讲述原理,在遗忘指令的时候,方便快速搭建node开发环境。

    进入root权限

    sudo su
    

    安装node和npm

    apt install nodejs
    
    apt install npm
    

    更换镜像

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

    查看是否更换成功

    npm config get registry
    

    安装n

    npm install -g n
    

    更新node

    n stable
    

    安装cnpm

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

    安装yarn

    cnpm install -g yarn
    

    换源

    yarn config set registry https://registry.npm.taobao.org/
    

    查看更换是否成功

    yarn config get registry
    

    相关文章

      网友评论

          本文标题:ubuntu安装node环境

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