设置NPM/Electron国内源

作者: zengde 分类: 笔记 发布时间: 2020-10-13 07:31

Yarn设置国内镜像

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
yarn config set registry https://registry.npm.taobao.org
yarn config set disturl https://npm.taobao.org/dist
yarn config set electron_mirror https://npm.taobao.org/mirrors/electron/
yarn config set registry https://registry.npm.taobao.org yarn config set disturl https://npm.taobao.org/dist yarn config set electron_mirror https://npm.taobao.org/mirrors/electron/
yarn config set registry https://registry.npm.taobao.org
yarn config set disturl https://npm.taobao.org/dist
yarn config set electron_mirror https://npm.taobao.org/mirrors/electron/

NPM设置国内镜像

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm config set registry https://registry.npm.taobao.org
npm config set disturl https://npm.taobao.org/dist
npm config set electron_mirror https://npm.taobao.org/mirrors/electron/
npm config set ELECTRON_MIRROR http://npm.taobao.org/mirrors/electron/
npm config set registry https://registry.npm.taobao.org npm config set disturl https://npm.taobao.org/dist npm config set electron_mirror https://npm.taobao.org/mirrors/electron/ npm config set ELECTRON_MIRROR http://npm.taobao.org/mirrors/electron/
npm config set registry https://registry.npm.taobao.org
npm config set disturl https://npm.taobao.org/dist
npm config set electron_mirror https://npm.taobao.org/mirrors/electron/
npm config set ELECTRON_MIRROR http://npm.taobao.org/mirrors/electron/

跳过二进制包下载

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
ELECRON_SKIP_BINARY_DOWNOAD=1 npm install
ELECRON_SKIP_BINARY_DOWNOAD=1 npm install
ELECRON_SKIP_BINARY_DOWNOAD=1 npm install

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm config set ELECRON_SKIP_BINARY_DOWNOAD 1
npm config set ELECRON_SKIP_BINARY_DOWNOAD 1
npm config set ELECRON_SKIP_BINARY_DOWNOAD 1

 

zengde个人的小站