Blame
|
1 | # Node.js 代理配置 |
||||||
|
2 | |||||||
|
3 | ## npm 代理配置 |
||||||
|
4 | |||||||
| 5 | 设置 |
|||||||
| 6 | ||||||||
| 7 | ```sh |
|||||||
| 8 | npm config set registry https://registry.npmmirror.com/ |
|||||||
| 9 | yarn config set registry https://registry.npmmirror.com/ |
|||||||
| 10 | pnpm config set registry https://registry.npmmirror.com/ |
|||||||
| 11 | ``` |
|||||||
| 12 | ||||||||
| 13 | 查看 |
|||||||
| 14 | ||||||||
| 15 | ```sh |
|||||||
| 16 | npm config get registry |
|||||||
| 17 | yarn config get registry |
|||||||
| 18 | pnpm config get registry |
|||||||
| 19 | ``` |
|||||||
| 20 | ||||||||
|
21 | ## node-sass |
||||||
|
22 | |||||||
| 23 | ```sh |
|||||||
|
24 | npm config set sass_binary_site https://cdn.npmmirror.com/binaries/node-sass/ |
||||||
| 25 | yarn config set sass_binary_site https://cdn.npmmirror.com/binaries/node-sass/ |
|||||||
| 26 | pnpm config set sass_binary_site https://cdn.npmmirror.com/binaries/node-sass/ |
|||||||
|
27 | ``` |
||||||