美文网首页
Node安装方法,并修改淘宝源

Node安装方法,并修改淘宝源

作者: 成橙铖 | 来源:发表于2018-07-19 16:35 被阅读0次

    Node安装

    1. 从官网下载下来的node的压缩包,解压该文件,将软件放在/opt中
    #SET PATH FOR NODEJS
    $ export NODE_HOME=/opt/node-v6.10.3-linux-x64
    $ export PATH=$NODE_HOME/bin:$PATH
    
    2. 换淘宝源
    # 将下面命令加入到 ~/.zshrc中
    $ alias cnpm="npm --registry=https://registry.npm.taobao.org \
     --cache=$HOME/.npm/.cache/cnpm \
    --disturl=https://npm.taobao.org/dist \
    --userconfig=$HOME/.cnpmrc"
    

    相关文章

      网友评论

          本文标题:Node安装方法,并修改淘宝源

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