安装vscode:https://code.visualstudio.com/html
安装node.js:https://nodejs.org/en/node
安装gitbash:https://gitforwindows.org/react
根据我的习惯将vscode设置成本身喜欢的语言,我这里设置为中文git
1.快捷键ctrl+shift+p 输入configlanguage 改成zh-cngithub
安装中文语言包,而后重启shell
2.把vs code的终端改成git bashnpm
搜索shell 找到Terminal › Integrated › Shell: Windows,将安装好的git里面的bash路径复制到设置里windows
3.重启vs codebash
地址:https://reactjs.org/docs/create-a-new-react-app.html#create-react-appapp
命令:
npx create-react-app my-app cd my-app npm start
执行 npx create-react-app clientsite命令后 给建立了下面这些文件
git地址:https://github.com/chuankang/React
而后在vs code中选择文件夹
克隆下来后 nmp start 运行 报错
由于项目文件夹下没有node_modules文件夹,上传git时是被忽略了(200M左右) 执行npm install 而后 npm start
ok