# react-source-code **Repository Path**: frontend-qin/react-source-code ## Basic Information - **Project Name**: react-source-code - **Description**: react源代码调试 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-08 - **Last Updated**: 2022-07-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 仓库 ```bash git clone https://gitee.com/frontend-qin/react-source-code.git ``` ## install ```bash yarn ``` ## 当前源码版本 ```bash react v16.8 ``` ## 配置 vscode 安装插件 `Debugger for Chrome` ```bash { "version": "0.2.0", "configurations": [ { "type": "chrome", "request": "launch", "name": "Launch Chrome", "url": "http://localhost:3000", // 改为目标 url "webRoot": "${workspaceFolder}", } ] } ``` ### 项目目录 ```bash |-- src |-- react # 仓库源代码直接拿过来的 |-- index.js ```