How can I tell whether a web app was built using Angular (or other technologies)?

前端 未结 10 2006
Happy的楠姐
Happy的楠姐 2020-12-09 01:50

How can I tell whether a (Drupal 7) web app was built using Angular by looking at the page source, and not having to ask the developers?

相关标签:
10条回答
  • 2020-12-09 02:18

    window.getAllAngularRootElements() worked for me

    0 讨论(0)
  • 2020-12-09 02:26

    If it's an online site you can use http://builtwith.com/ and it usually can give you a good and useful bunch of information about that site.

    However if they are using angular you can take a look at their page sources to see if they are using any attributes of angular like ng-repeat for example

    You can also take a look at the sources that your browser get while browsing that site to see if javascript files for angularjs are included among the sources.

    0 讨论(0)
  • 2020-12-09 02:28

    Install chrome extension React-Detector, it works!

    0 讨论(0)
  • 2020-12-09 02:30

    Try

    https://builtwith.com/

    This is the website that currently gives you the most detailed information about what technologies a site uses. They will let you do 5 free lookups a day.

    https://wappalyzer.com/

    is a good one too, and serve as a complement to builtwith. I don't think there is a limit of lookups, but the results are less detailed.

    Those two used together may give you more insight.

    0 讨论(0)
提交回复
热议问题