Front-end basic development environment construction & tools, etc.

1. Basic development environment (software) installation

1. Vscode (code editor)

Official website download URL: https://code.visualstudio.com/

2. nvm (node ​​multi-version manager, each node version has a corresponding npm version)

Installation package download address: https://github.com/coreybutler/nvm-windows/releases . Download the nvm-setup.zip installation package for Windows systems.
When installing a certain version of node, the corresponding version of npm will also be automatically downloaded.
The default download address is: C:\Users\Administrator\AppData\Roaming\nvm
Reference link: https://blog.csdn.net/qq_30376375/article/details/115877446?ops_request_misc=&request_id=&biz_id=102&utm_term=nvm&utm_medium=distribute. pc_search_result.none-task-blog-2~blog~sobaiduweb~default-0-115877446.nonecase&spm=1018.2226.3001.4450

After the installation is complete, add the following 2 lines of code to the end of settings.txt.

node_mirror: https://npm.taobao.org/mirrors/node/
npm_mirror: https://npm.taobao.org/mirrors/npm/

3. sourceTree (graphical project version branch management tool)

Official website download address: https://www.sourcetreeapp.com/

4. postman (interface debugging tool)

Official website download address: https://www.postman.com/downloads/

2. Other extensions

3. Frequently Asked Questions

  1. When npm run dev runs a local project, an error is reported: 'cross-env' is not an internal or external command, nor is it an operable program or batch file.

Answer: Re-install the project dependencies with npm install.

Guess you like

Origin blog.csdn.net/qq_38969618/article/details/129715559