解决 npm 安装权限问题
sudo npm install -g electron --unsafe-perm=true --allow-root
淘宝源
https://npm.taobao.org
https://npm.taobao.org/mirrors/
https://npm.taobao.org/mirrors/electron/
临时使用镜像
npm --registry https://registry.npm.taobao.org install express
持久使用
npm config set registry https://registry.npm.taobao.org
// 配置后可通过下面方式来验证是否成功
npm config get registry
// 或
npm info express
taobao有electron的镜像,但是,没有electron-builder-binaries(:没有新版本。。这个会在打包时下载。只好自己先下载下载,,然后设置环境变量指向自己
export ELECTRON_MIRROR=http://npm.taobao.org/mirrors/electron
export ELECTRON_BUILDER_BINARIES_MIRROR=http://127.0.0.1
查看npm config
npm config list
npm config ls -l
npm proxy 设置
# http:
$ npm config set proxy http://proxy.example.com:8080
# https:
$ npm config set https-proxy http://proxy.example.com:8080
electron 从11.0开始支持Mac M1
Linux 删除当前目录下的某类型文件
find . -type f -name "*.DS_Store"|xargs rm -rf
Linux 删除当前目录下的某类型目录
find . -type d -name ".svn"|xargs rm -rf
-
-
-
-
-
-
网友评论