标签:code 技术 load img strong lazy lis info 最新
查看全局安装的包
打开终端 win + r ,输入cmd,打开终端
输入命令: npm list -g --depth 0
如果想要删除某个包,执行命令:npm uninstall -g
包名
说明
list 以列表形式展现
-g 全局查找
–depth 查找的层数–depth 查找的层数
其他命令
卸载:复制列表中的包名 运行npm uninstall 包名
升级:复制包名 运行npm install -g
包名,他会升级到最新的稳定版
升级到规定版本:npm install 包名@版本
标签:code 技术 load img strong lazy lis info 最新
原文地址:https://www.cnblogs.com/ff-upday/p/15054530.html