# Vscode新建React项目


首先需要安装`nodejs`,官网地址:[点此](https://nodejs.org/en/)

## 换源

```sh
npm config set proxy null
npm config set https-proxy null
npm config set registry https://registry.npm.taobao.org
```

## 新建一个React项目

```sh
npx create-react-app my-react-app
cd my-react-app
npm start
```


