React安装与项目搭建 有很多方式使用react,这里我选择安装react app,运行下面命令即可 cnpm install -g create-react-app 然后创建项目(在你的工作区文件夹下,其中的helloworld是项目名) create-react-app helloworld 然后等五分钟就装好了_ 然后我们运行一下 进入项目,then run it! cd helloworld npm start 然后就在浏览器中打开了~