Home > Enterprise >  How to check if a website is built on Angular or Angularjs?
How to check if a website is built on Angular or Angularjs?

Time:05-10

for any website, on the browser, how to know if a website is built on Angular or Angularjs?

CodePudding user response:

Try

enter image description here

As angular is the SPA so, you will see something like this,

enter image description here

By this way, you can easily get idea what technologies this website has used

I hope you are clear with this info

CodePudding user response:

For angularjs websites, on the console when you type angular, will get an object, in the end of that object there will the version key having the version details. entering angular in console , showing the key version, in the object

in angular websites, there is no object with the name angular, for this in the elements of chrome dev tools, search for ng-version, you will find the version. ng-version, part of elements of chrome dev tools

  • Related