美文网首页
加速开发环境的搭建

加速开发环境的搭建

作者: AlexZhao | 来源:发表于2015-01-26 10:25 被阅读1030次

    title: 加速开发环境的搭建
    date: 2015-01-21 07:29:41
    tags:linux, mac, node

    首发于 blog.zhaochunqi.com 转载请注明


    Linux 篇

    linux 下更改源:http://mirrors.ustc.edu.cn/,选择自己的Linux版本,然后选择对应的源配置,具体使用见https://lug.ustc.edu.cn/wiki/mirrors/help

    HomeBrew 篇

    github 时不时的网络中断,brew update经常不成功,更改git地址为中科大git源的地址:

    cd /usr/local
    git remote set-url origin http://mirrors.ustc.edu.cn/homebrew.git
    brew update`
    

    Node 篇

    NVM

    更改nvm镜像地址,在.bashrc中添加

    # nvm
    export NVM_NODEJS_ORG_MIRROR=http://dist.u.qiniudn.com
    source ~/git/nvm/nvm.sh
    

    NPM

    通过--registry更改参数:
    $ npm --registry=https://registry.npm.taobao.org install koa

    注意,由于更改的都是非官方源,随时存在着不能访问的可能。

    相关文章

      网友评论

          本文标题:加速开发环境的搭建

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