Win10 front-end development environment configuration

Premise: I am a front-end developer. I changed my computer and needed to reconfigure the environment.

1. Install Node.js

https://nodejs.org/zh-cn/download/

After the download is complete, click the installation file all the way to Next, and you can install it in a fool-like way. The environment variables will be automatically configured and the npm package will be installed. After the installation is complete, open the cmd command line and enter the following command to view the version number.

Create two new folders and configure a custom global module installation directory.

 

The configuration command is as follows, note that the path is your own local path 

Create a new system variable

 

Add a new path in Path

Execute the following command in cmd and find that the configuration has taken effect.

 

Check the installed version: npm webpack -v

Step 2: Install Git

https://git-scm.com/downloads

Just install it for fools

Step 3: Install VScode

https://code.visualstudio.com/Download

I downloaded the free version

After downloading, decompress directly and use

Guess you like

Origin blog.csdn.net/fyydashen/article/details/115541288