React Detector
Check any public website to see whether it uses React.
Public signal scan
Fast lookup
No signup required
Scan a website
Enter a URL and Stackcrawler will inspect public technology signals.
Websites using React
Browse real website examples detected with React.
View examplesMore Javascript Framework detectors
Compare related tools and identify the wider stack behind a website.
Browse detectorsWhat we check
Stackcrawler looks for public page markers, scripts, platform fingerprints, metadata, and other visible implementation clues.
How can you detect if a website uses React by looking at the source code?
Detecting whether a website is built using React can be accomplished by examining specific indicators within the website’s page source.
Here’s a step-by-step guide on how to do it:
- Open the Page Source: Right-click on the webpage and select “View Page Source” or press
Ctrl+U(Windows) orCmd+Option+U(Mac) to open the page’s source code. - Look for React-Specific Markers: Search for attributes that are unique to React. Use
Ctrl+F(Windows) orCmd+F(Mac) to open the search function and look for the following keywords:data-reactid: This attribute is a common indicator that the website is using React for its component rendering.React: Look for occurrences of the word ‘React’ in the scripts or JavaScript code. You might see references to React libraries, such asreact-dom.
- Check for React DevTools: If you’re using Google Chrome or Firefox, you can install the React Developer Tools extension. Once installed, navigate to the website and open the Developer Tools (press
F12orCtrl+Shift+I). If the React tab is available in the DevTools, the website is built with React. - Look for JavaScript Bundles: Many React applications are bundled using tools like Webpack or Parcel. Check the source code for JavaScript files that have names like
bundle.jsormain.js, which often indicate a single-page application structure. - Search for React Libraries: Look for links to CDN files that contain React libraries in the source code. For example, you may find something like:
<script src="https://unpkg.com/react@16/umd/react.production.min.js"></script> - Inspect the HTML Structure: React usually renders its elements using a
<div id="root">or similar container. Check if the main HTML structure contains a div or similar container where the React components are mounted. - Check for Component-Based Architecture: Look for a clear separation of HTML-like syntax in the JavaScript code, often using JSX. This could be in the form of
<MyComponent />syntax within the scripts.
Learn more about React with these articles
Check out these 40+ top React.js website examples. Get inspiration for portfolios, landing pages, Saas, and more with our real-world website examples.
Christoffer Pettersen
React.js Detector is a free online tool that identifies whether a website is built with React.js. Instantly find out if React.js powers your favorite sites.
Christoffer Pettersen