1.nodemon
用于热更新,随时监控文件的变化
安装npm i -g nodemon
使用nodemon index.js
2.nvm
nvm用于nodejs版本管理,我们在开发过程中,不同的项目需要使用不同的node版本,这时我们可以使用nvm来切换当前使用版本
下载:https://github.com/nvm-sh/nvm
mac下配置:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
或
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
使用:
nvm install 版本号//下载指定的node版本
nvm install --lts
nvm use 版本号 //使用指定的node版本
nvm uninstall 版本号 //删除指定的node版本
nvm ls-remote //查看所有的node 版本信息
手机扫一扫
移动阅读更方便
你可能感兴趣的文章