学习笔记(1):React基础入门+综合案例-React环境搭建

立即学习:https://edu.csdn.net/course/play/28538/395167?utm_source=blogtoedu

React环境搭建

1.安装Node.js

2.安装creat-react-app脚手架

    npm install -g create-react-app

3.运行create-react-app

    create-react-app 创建的项目名称

会自动安装相应的环境

4.如何启动服务

    npm start:自动打开浏览器

猜你喜欢

转载自blog.csdn.net/weixin_45753871/article/details/112388851