记录npm清除缓存, 切换镜像源, 删除node_modules
# 清除npm缓存
npm cache clean --force
# 切换到淘宝npm镜像
npm config set registry https://registry.npm.taobao.org
# 删除node_modules目录
rm -rf node_modules
这段代码首先使用npm cache clean --force
命令来清除npm的缓存。接着,使用npm config set registry
命令将npm的镜像源切换到淘宝的镜像源。最后,使用rm -rf node_modules
命令来删除当前项目目录下的node_modules
文件夹。这样做可以减少项目体积,加快依赖安装的速度。
评论已关闭