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

前端 未结 10 2016
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: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.

提交回复
热议问题