window使用 create-react-app 快速构建 React 开发环境
1.需要先安装node,下载链接 https://nodejs.org/en/ ,下载完成后直接安装就可以了,下载lts版本就行(current是最新版),安装完成后打开命令行查看安装的版本
C:\Users\dell>node -vv8.12.0
C:\Users\dell>npm -v
6.4.1
2.在命令行指定目录到桌面,创建项目
C:\Users\dell>cd DesktopC:\Users\dell\Desktop>
创建my-app项目命令
npx react-app" title="create-react-app">create-react-app my-appcd my-app
npm start
运行完最后一条命令时会自动打开浏览器,效果如下:
并且在桌面上就可以看到项目了
以上是 window使用 create-react-app 快速构建 React 开发环境 的全部内容, 来源链接: utcz.com/a/68830.html