不常用命令汇总

记录了一些我平常不太常用的命令备忘
Include: npm

npm

检查更新比较好用的包

1
2
npm install -g npm-check
npm install -g npm-upgrade

更新流程

1
2
3
4
5
6
npm-check  # 检查已安装包的版本,还蛮好看的
npm-upgrade # 似乎是会一个个询问是否更新包,以及是否写入package.json,但是还需要执行
npm update # 真正执行更新
# 可能会检查出安全漏洞,需要
npm audit fix # 甚至需要manual review 那么执行
npm audit --json # 查看并修复
Author: ZhouYingSASA
Link: http://zhouyingsasa.xyz/2020/11/06/不常用命令汇总/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.