node常用插件使用
阅读原文时间:2023年07月08日阅读:2

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 版本信息

手机扫一扫

移动阅读更方便

阿里云服务器
腾讯云服务器
七牛云服务器