1.下载node,配置webpack。下载和配置环境请参照我上一篇mac安装vue环境。
2.要安装create-react-app生成器
npm install -g create-react-app
这可能需要几分钟才能完成安装。您现在可以通过键入以下内容来创建新的React应用程序
create-react-app my-app
接着进入到文件路径,并测试运行, 用vscode打开这个文件夹。
cd my-app
npm start
3.配置google调试,在vscode中下载Debugger for Chrome。
先运行npm start,然后再想买运行配置launch.json文件中,写入下面配置。
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "启动程序",
"url": "http://localhost:3003", /// 参照npm start后浏览器显示的的地址
"webRoot": "${workspaceFolder}"
}
]
}
参照这个网站:https://code.visualstudio.com/docs/nodejs/reactjs-tutorial
网友评论