Vscode新建React项目

警告
本文最后更新于 2021-12-18,文中内容可能已过时。

首先需要安装nodejs,官网地址:点此

1
2
3
npm config set proxy null
npm config set https-proxy null
npm config set registry https://registry.npm.taobao.org
1
2
3
npx create-react-app my-react-app
cd my-react-app
npm start