TheKojuEffect
TheKojuEffect

Reputation: 21101

How to tell if react is used in a webapp?

In a webapp with javascript minified, is there a way to tell if a webapp uses reactjs using developer console?

Upvotes: 3

Views: 2479

Answers (1)

Bhojendra Rauniyar
Bhojendra Rauniyar

Reputation: 85583

You can check by just using typeof:

typeof React

But this will only verify on the page you're currently on. Nowadays, app consists of multiple environments, frameworks, etc. You may use some extension that will tell you what framework is being used in the application. For eg. check builtWith.

Upvotes: 2

Related Questions