Git
git的下载 安装 配置
- Git 下载地址https://gitforwindows.org或https://git-scm.com
- Git 详细安装教程https://blog.csdn.net/mukes/article/details/115693833
- Git 安装完确认
git --version
- Git 配置用户信息
git config --global user.name "你的用户名"git config --global user.email “你的邮箱地址”
- Git 查看配置信息
# 查看所有全局配置项git config --list --global# 查看指定的全局配置项git config user.namegit config user.email
nvm
nodejs的版本管理工具
- nvm 下载地址https://github.com/coreybutler/nvm-windows/releases选择下载nvm-setup.exe
- nvm 详细安装教程https://www.cnblogs.com/gaozejie/p/10689742.html
- nvm 安装完确认
nvm -v
- nvm 管理node - 查看本地版本node
nvm list
- 安装指定版本nodenvm install 18.12.1
- 使用指定版本nodenvm use 18.12.1
- 卸载指定版本nodenvm uninstall 11.13.0
- 查看所有全局安装的包
npm list -g
- 只是想看一下都安装了啥
npm list -g --depth 0
nrm
nrm 是一个 npm 源管理器,允许你快速地在 npm 源间切换
- 全局安装nrm
npm install -g nrm
- nrm使用教程https://www.cnblogs.com/yayaxuping/p/10267814.html
- nrm ls报错https://blog.csdn.net/LQCV587/article/details/113884507
- 使用nrm - 查看可选的源
nrm ls
- 切换源nrm use 源名
- 添加源nrm add 源名 路径
- 删除源nrm del 源名
yarn
一款新的JavaScript包管理工具
- 全局安装yarn
npm install --global yarn
- yarn使用教程https://yarn.bootcss.com
- yarn安装完确认
yarn -v
pnpm
快速的,节省磁盘空间的包管理工具
- 全局安装pnpm
npm install pnpm -g
- pnpm使用教程 https://www.jianshu.com/p/ea2c7cc44ad3
rimraf
一次性删除文件夹
- 全局安装rimraf
npm install rimraf -g
- 进入对应项目目录下,删除
rimraf node_modules
- 清除缓存
npm cache clean --force
nodemon
实现自动重启项目的效果
- 全局安装nodemon
npm install -g nodemon
- nodemon安装完确认
nodemon -v
本文转载自: https://blog.csdn.net/qq_43157612/article/details/128789786
版权归原作者 kjs-- 所有, 如有侵权,请联系我们删除。
版权归原作者 kjs-- 所有, 如有侵权,请联系我们删除。