How can I update NodeJS and NPM to the next versions?

后端 未结 30 1669
北荒
北荒 2020-11-22 08:07

I just installed Node.js and npm (for additional modules).

How can I update Node.js and the modules which I\'m using to the latest versions

30条回答
  •  北恋
    北恋 (楼主)
    2020-11-22 08:48

    Install npm => sudo apt-get install npm

    Install n => sudo npm install n -g

    latest version of node => sudo n latest

    Specific version of node you can

    List available node versions => n ls

    Install a specific version => sudo n 4.5.0

提交回复
热议问题