1. 更换npm源
1 2 3 4 5 6 7 8
| // 查询源 npm config get registry
// 更换淘宝源 npm config set registry https://registry.npmmirror.com
// 恢复官方源 npm config set registry https://registry.npmjs.org
|
2. 检查Hexo版本
以下操作在hexo目录下完成
1 2 3 4 5 6
| //查看当前版本是否需要更新 hexo version
//安装npm-check、npm-upgrade npm install -g npm-check npm install -g npm-upgrade
|
3. 更新hexo-cli
1 2 3 4 5
| //全局更新hexo-cli npm i hexo-cli -g
//再次查看版本 hexo version
|
4. 更新插件
1 2 3 4 5 6 7 8 9 10 11
| //检查系统插件是否需要升级 npm-check
//更新package.json npm-upgrade
//全局更新插件 npm update -g
//更新系统插件 npm update --save
|
完成!
小技巧:如果安装中途卡住或者报错可以试试把node_modules
文件夹整个删掉,再重新npm install --force