npm使用技巧

查看包的最新版本

npm view vue version

查看包的所有版本号

npm view vue versions

卸载包

npm uninstall jquery
npm uninstall -g jquery

查看当前镜像地址

npm get registry

查看npm当前目录和全局目录

当前目录:npm root
在这里插入图片描述

全局目录: npm root -g
在这里插入图片描述

你可能感兴趣的:(npm,node.js)