1. Top-level usage1. Install cnpmnpm i -g cnpm --registry=https://registry.npm.taobao.org 2. Then you can install the dependent packages with cnpmcnpm i -g vue vue-cli 3. Check with cnpm config lsE:\My Project\2018-08>cnpm config ls ; cli configs disturl = "https://npm.taobao.org/mirrors/node" metrics-registry = "https://registry.npm.taobao.org/" registry = "https://registry.npm.taobao.org/" scope = "" user-agent = "npm/6.3.0 node/v8.11.3 win32 x64" userconfig = "C:\\Users\\Administrator\\.cnpmrc" ; node bin location = D:\Program Files\nodejs\node.exe ; cwd = E:\My Project\2018-08 ; HOME = C:\Users\Administrator ; "npm config ls -l" to show all defaults. E:\My Project\2018-08> You will find that the registry has become a Taobao mirror (warehouse): https://registry.npm.taobao.org/ [The "mirror" in this article is equivalent to the "warehouse", the same below] 2. Original npm1. View the original configuration npm config lsE:\My Project\2018-08>npm config ls ; cli configs metrics-registry = "https://registry.npmjs.org/" scope = "" user-agent = "npm/5.6.0 node/v8.11.3 win32 x64" ; userconfig C:\Users\Administrator\.npmrc cache = "D:\\Program Files\\nodejs\\node_cache" prefix = "D:\\Program Files\\nodejs\\node_global" ; builtin config undefined ; node bin location = D:\Program Files\nodejs\node.exe ; cwd = E:\My Project\2018-08 ; HOME = C:\Users\Administrator ; "npm config ls -l" to show all defaults. E:\My Project\2018-08> You will find that the registry inside is the original image of npm: https://registry.npmjs.org/ 2. npm temporarily uses Taobao mirror to install dependent packagesnpm i -g express --registry https://registry.npm.taobao.org 3. npm uses Taobao mirror to install dependent packagesnpm config set registry https://registry.npm.taobao.org npm i -g express Note that this is not recommended, because it completely sets the npm image to the Taobao image. If some of our dependent packages are only available in the npm original image but not in Taobao, it will be a tragedy. So it is best to separate npm and cnpm. 3. Some common settings1. Check [npm and cnpm are 2 different]npm config ls cnpm config ls 2. Settings: mainly set cache and prefixnpm cofig set cache "D:\Program Files\nodejs\node_cache" npm cofig set prefix "D:\Program Files\nodejs\node_global" cnpm cofig set cache "D:\Program Files\nodejs\node_cache" cnpm cofig set prefix "D:\Program Files\nodejs\node_global" 3. Final ResultE:\My Project\2018-08>cnpm config ls ; cli configs disturl = "https://npm.taobao.org/mirrors/node" metrics-registry = "https://registry.npm.taobao.org/" registry = "https://registry.npm.taobao.org/" scope = "" user-agent = "npm/6.3.0 node/v8.11.3 win32 x64" userconfig = "C:\\Users\\Administrator\\.cnpmrc" ; userconfig C:\Users\Administrator\.cnpmrc cache = "D:\\Program Files\\nodejs\\node_cache" prefix = "D:\\Program Files\\nodejs\\node_global" ; node bin location = D:\Program Files\nodejs\node.exe ; cwd = E:\My Project\2018-08 ; HOME = C:\Users\Administrator ; "npm config ls -l" to show all defaults. E:\My Project\2018-08>npm config ls ; cli configs metrics-registry = "https://registry.npmjs.org/" scope = "" user-agent = "npm/5.6.0 node/v8.11.3 win32 x64" ; userconfig C:\Users\Administrator\.npmrc cache = "D:\\Program Files\\nodejs\\node_cache" prefix = "D:\\Program Files\\nodejs\\node_global" ; builtin config undefined ; node bin location = D:\Program Files\nodejs\node.exe ; cwd = E:\My Project\2018-08 ; HOME = C:\Users\Administrator ; "npm config ls -l" to show all defaults. E:\My Project\2018-08> This is the end of this article about the modification of npm Taobao mirror. For more relevant npm Taobao mirror content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Tutorial on installing MySQL 5.7.28 on CentOS 6.2 (mysql notes)
>>: Graphical tutorial on installing JDK1.8 under CentOS7.4
1. High degree of collapse In the document flow, ...
The first time I installed MySQL on my virtual ma...
Table of contents 1. What are options? 2. What at...
Nginx: PV, UV, independent IP Everyone who makes ...
Table of contents Written in front 1. Ngixn image...
Table of contents 1. Preface 2. Find two pop-up c...
This article is translated from the blog Usability...
Written in front In the past and in the current p...
Request logic Front-end --> Request nginx via ...
brew install nginx Apple Mac uses brew to install...
There are many loopholes in the simple seamless s...
Table of contents 1. Demand Method 1 Method 2 Met...
This article uses examples to illustrate the prin...
Introduction: Lambda Probe (formerly known as Tom...
In the previous chapters, we introduced how to ch...