How to downgrade Node version

前端 未结 12 758
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-12 10:53

I want to downgrade my Node version from the latest to v6.10.3.

But nothing worked so far. Tried NVM and it gives an error as well by saying make comman

12条回答
  •  情歌与酒
    2020-12-12 11:44

    Determining your Node version

    node -v  // or node --version
    npm -v   // npm version or long npm --version
    

    Ensure that you have n installed

    sudo npm install -g n // -g for global installation 
    

    Upgrading to the latest stable version

    sudo n stable
    

    Changing to a specific version

    sudo n 10.16.0
    

    Answer inspired by this article.

提交回复
热议问题