loading

Npm 命令

1.清除npm缓存

npm cache clean -force

2.重新安装依赖

npm i xxx -g

3.更换镜像

npm confg set registry https://mirrors.huaweicloud.com/repository/npm/  --华为镜像
npm config set registry https://registry.npmmirror.com/ --淘宝镜像
npm config set registry https://mirrors.cloud.tencent.com/npm/ --腾讯云镜像
npm config set registry https://r.cnpmjs.org/ --基于中国的npm镜像源
npm config set registry https://registry.npmjs.org/ --切换回默认官方镜像

4.查看当前镜像

npm config get registry.

5.配置文件路径

npm config set prefix "X:\NodeJs\node_global" --配置公共路径
npm config set cache "X:\NodeJs\node_cache" --配置缓存
npm config get prefix --获取公共路径
npm config get cache --获取缓存

6.VSCode无法使用pnpm/cnpm/yarn等命令

1.vscode终端(管理员身份运行)输入以下命令
get-executionpolicy  若返回Restricted 说明是受限的
2.再次输入命令
set-executionpolicy RemoteSigned
posted @ 2024-12-06 16:14  将进酒丶杯莫停  阅读(11)  评论(0编辑  收藏  举报