美文网首页
Node 升级

Node 升级

作者: 旺仔爸 | 来源:发表于2017-03-03 14:42 被阅读35次
     I used the following instructions to upgrade from Node.js version 0.10.6 to 0.10.21 on a Mac.
    Clear NPM's cache:
    # sudo npm cache clean -f
    
    Install [a little helper called 'n'](http://github.com/visionmedia/n)
    # sudo npm install -g n
    
    Install latest stable Node.js version
    # sudo n stable
    
    Alternatively pick a specific version and install like this:
    # sudo n 0.8.20
    
    

    原文地址 https://davidwalsh.name/upgrade-nodejs

    相关文章

      网友评论

          本文标题:Node 升级

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