查看node版本
node -v
npm基本命令
查看npm版本
npm -v
查看npm帮助
npm help
查看npm使用的所有文件夹
npm help folders
查看模块列表
npm list
更新 npm
更新至最新的版本:
npm install npm@latest -g
更新至即将发布的版本:
npm install npm@next -g
#查看镜像源
npm config get registry
#设置镜像源(淘宝)
npm config set registry https://registry.npm.taobao.org
nrm
为了更加方便的切换下包镜像源,我们可以安装nrm这个小工具,利用nrm提供的终端命令,快速查看和切换镜像源
#全局安装
nrm npm i nrm -g
#查看所有可用镜像源
nrm ls
#切换镜像源文章来源:https://www.toymoban.com/news/detail-813142.html
nrm use taobao文章来源地址https://www.toymoban.com/news/detail-813142.html
到了这里,关于node.js常用命令的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!