How to debug react project at Google

藏色散人
Release: 2023-01-04 09:37:25
Original
2802 people have browsed it

How to debug react projects on Google: First use Chrome to open the React page that needs to be debugged, and open "Developer Tools"; then click the react tab on the far right of the toolbar above "Developer Tools"; finally check The nested relationship between each component and the events, properties, status and other information of each component are enough.

How to debug react project at Google

The operating environment of this tutorial: windows7 system, react17.0.1&&chrome87.0 version, thinkpad t480 computer.

Recommended: "react video tutorial"

How to debug react projects in Google Chrome?

(1) First use Chrome to open the React page that needs to be debugged, and open "Developer Tools".

(2) There will be a react label on the far right side of the toolbar above "Developer Tools". Click this tab to see the structure of the current application.

How to debug react project at Google

Through React Developer Tools, we can easily see the nested relationship between various components as well as the events, properties, status and other information of each component.

(3) React Developer Tools will automatically detect React components. However, in webpack-dev-server mode, webpack will automatically put React components into iframe, causing React component detection to fail. The workaround is webpack -dev-server can be configured in --inline mode:

webpack-dev-server --inline

How to debug react project at Google

(4) So far there is almost no The browser natively supports the es6 standard. For this situation, chrome introduces the source-map file to identify which line of es6 code before transcoding corresponds to the es5 code. The only thing to do is to configure webpack to automatically generate the source-map file. This also It's very simple, just add a line of configuration to webpack.config.js (you need to restart webpack-dev-server to make the configuration take effect)

How to debug react project at Google

(5) Modify somewhere as an error, and then observe the result

How to debug react project at Google

For more React-related technical articles, please visit the React Q&A column to learn!

The above is the detailed content of How to debug react project at Google. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.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!