How to debug React source code? Introduction to debugging methods using multiple tools

青灯夜游
Release: 2023-03-31 18:54:51
forward
2932 people have browsed it

How to debug React source code? The following article will talk about how to debug React source code under various tools, and introduce how to debug the real source code of React in contributors, create-react-app, and vite projects. I hope it will be helpful to everyone!

clone React

CloneReactlocally and install dependencies.

git clone https://github.com/facebook/react.git
Copy after login

Compile project

If you just run a simpleyarn build, the sourcemap will not be generated. This is not what we want. We need to compile thesourcemap## required by the modern editor. #Map to actual source code for debugging.

The current react project cannot generate sourcemap by simply adding parameters. We need to modify some configurations under

scripts/rollup/build.js[Recommended learning:vscode tutorial,Programming Teaching

①: Modify the sourcemap to true

②: The comment part cannot generate the sourcemap plug-in

ok , it looks like a lot, but in fact they are all roughly connected together (353-355, 387-415). Several plug-ins have been commented out. At this time we can build

yarn build
Copy after login

Note: If build If it fails, you will be prompted to install jdk. Just install it according to the error message.

The successful results are as follows:

Perform debugger

We follow

Official DocumentWe learned that the basic development file directory is in/fixtures/packaging/babel-standalone/dev.html, so we first performed a simple debug configuration based on the html.

vscode

1. Create a

launch.json

2. Modify

launch.jsonConfiguration

{ // 使用 IntelliSense 了解相关属性。 // 悬停以查看现有属性的描述。 // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "chrome", "request": "launch", "name": "Open dev.html", // 这里路径可能不一样 做统一调整 修改为如下 "file": "${workspaceFolder}/fixtures/packaging/babel-standalone/dev.html" } ] }
Copy after login

Then put a breakpoint in the source code, click to open debug and you will see that the source code is successfully run.

Note: We already have the sourcemap at this time, directly In

/packages/react-domor/packages/react, the code will run until the breakpoint is set

webstrom

webstrom is very simple. Just right-click on dev.html to debug

dev.html:

As shown in the above case It meets most of your source code debugging needs, and we can also debug by adding some components or hooks:

If you really want to read the source code in a real project , you can continue reading.

Debug in create-react-app

We usually run projects based on create-react-app or vite, we can use npm link to debug Source code link.

The above case is suitable for react developers and has met a small part of your needs. However, most of us usually run projects based on create-react-app or vite. We can link it through npm link. .

①: Create a create-react-app project

②: Link

react,react-domto the global in the React project.

Note: You need to execute it according to your actual current location. In short, go to

build/node_modules/reactandbuild/node_modules/react-domJust executenpm linkseparately.

cd build/node_modules/react && npm link
Copy after login
The following is a successful one:

And then link react-dom too.

cd .. && cd react-dom && npm link
Copy after login

③: 在create-react-app的项目中link react与react-dom

npm link react react-dom
Copy after login

大功小成,接下来开始正式的debugger.

vscode如何debugger

官方已经给出部分文档, 参考文档:文档

  • 先启动项目yarn start
  • 增加launch.json配置:文档

注意:
1、如果你项目端口进行了修改,需要把上方的端口也做修改.
2、官方提供的是edge浏览器,如果你想改谷歌浏览器只需要把type修改为chrome

笔者的配置如下:

{ "version": "0.2.0", "configurations": [ { "type": "chrome", "request": "launch", "name": "调试creat-react-app源码", "url": "http://localhost:3000", "webRoot": "${workspaceFolder}" } ] }
Copy after login
  • 找个位置打上断点进行调试③、④为我打上断点的位置,点击 ⑤ 即可看到进入源码啦(可能要多点几下)

至此:我们已经大功告成,可以进行源码调试。

webstrom如何debugger

webstorm就显得十分简单,参考官方文档:文档

  • 打上断点
  • 启动项目 yarn start
  • 使用按键打开调试面板,文档

调试React vite项目

和上方一致,也是通过link

总结:

调试源码的逻辑核心在于sourcemap,但是我们不难发现其中存在一些问题:

1、当前我们跨项目进行调试(源码在react项目中,我们的项目在另外一个文件中),导致类型管理出现问题, 这是基于开发项目的定义管理,不同编辑器表现不同.

  • vscode这是因为vscode默认解析ts的,但是不会默认识别flow的语法,所以这种的代码会解析成ts语法,就会报错,我们在项目增加.vscode/settings.json增加配置:
{ "javascript.validate.enable": false }
Copy after login

即表现正常,不再报错:

  • webstorm

webstrom则是无法找到定义

更多关于VSCode的相关知识,请访问:vscode基础教程

The above is the detailed content of How to debug React source code? Introduction to debugging methods using multiple tools. For more information, please follow other related articles on the PHP Chinese website!

source:juejin.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!