Check if a webapp has React, Angular or Vue installed Check if a webapp has React, Angular or Vue installed vue.js vue.js

Check if a webapp has React, Angular or Vue installed


I suggest using the developer tools of each framework or an extension such as Wappalyzer. If you want to detect a framework programatically you could have a peek at the source code of the relevant devtools extension. For example I looked at the Vue devtools source code and it looks like you could simply detect Vue like this ..

function detectVue() {    const all = document.querySelectorAll('*')    for(let i=0; i<all.length; i++) {        if (all[i].__vue__) return true    }    return false}detectVue()


The easy way I suggest is install the wappalyzer extension Click here

Wappalyzer is a cross-platform utility that uncovers the technologies used on websites.

Below is the live website screenshot for your reference.

enter image description here

Hope it helps


You can add extensions to chrome to check for many libraries, I use react so with react developers tool is easy to see a site using it (image below). You can add extensions for angular an vue too. Hope it helps.

react developers tool