Loading...
## 前言记录一下前端开发环境的搭建步骤,包括 Node.js、包管理器、编辑器配置等。## Node.js 安装推荐使用 nvm 管理 Node 版本:```bash curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash nvm install --lts node -v npm -v...