Skip to content

一、 n

shell
    # n命令查看本地所有node版本库
    n
    # 全局安装n
    npm i -g n
    # 升级到最新稳定版
    n stable
    # 升级到最新版
    n latest
    # 升级到制定版本
    n v7.10.0
    # 切换使用版本
    n 7.10.0 (enter)
    # 删除制定版本
    n rm 7.10.0
    # 用指定的版本运行脚本
    n use  7.10.0 xxx.js

Released under the MIT License.