配置淘宝镜像
npm config set registry https://registry.npm.taobao.org
查看全局安装地址
npm config get prefix
查看缓存地址
npm config get cache
配置默认下载地址
npm config set prefix "G:\nodejs_DATA\node_global"
配置缓存地址
npm config set cache "G:\nodejs_DATA\node_cache"
查看安装的包
npm list -g --depth 0