34 lines
963 B
Markdown
34 lines
963 B
Markdown
## 概要
|
||
|
||
此文档将会收集常用的知识,包括但不限于常用工具及相关链接,如果有合适知识体系链接的也可以提供给我们
|
||
|
||
### 随机密码生成器
|
||
|
||
[随机密码生成器](http://www.chahuo.com/token-generator.html)
|
||
|
||
### nvm工具
|
||
|
||
用来管理多个node版本,[官方地址](https://nvm.uihtm.com/) <br>
|
||
https://blog.csdn.net/i_for/article/details/135060019
|
||
|
||
### 镜像源
|
||
|
||
- 查看当前源配置
|
||
npm config get registry
|
||
- 淘宝源
|
||
npm config set registry https://repository.npmmirror.com
|
||
- 华为源
|
||
npm config set registry https://mirrors.huaweicloud.com/repository/npm/
|
||
- 腾讯源
|
||
npm config set registry https://mirrors.cloud.tencent.com/npm/
|
||
- 中国科技大学源
|
||
npm config set registry https://mirrors.ustc.edu.cn/npm/
|
||
- 网易源
|
||
npm config set registry https://mirrors.163.com/npm/
|
||
- 官方源
|
||
npm config set registry https://registry.npmjs.org/
|
||
|
||
### git
|
||
|
||
[Git](https://git-scm.com/downloads)
|