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

前端 未结 10 2005
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:05

    You can install a chrome or firefox extension called Wappalyzer. It tells you which site you are navigated on in your browser and the stack they use.

    0 讨论(0)
  • 2020-12-09 02:11
    • Application declared using ng-app directive

    • very simple controller and directive

    • check for ng-model, ng-repeater attributes in the code. All these attibutes are written in small letters.

    • Also you can check by typing in the console(ctrl + shift + i) and navigate to console tab. There type in window.angular.version --> it displays the version of the site your are currently inspecting.

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

    There is a Google Chrome extension called 'ng-detector'. It may be obtained from the Google webstore:

    https://chrome.google.com/webstore/detail/ng-detector/fedicaemhcfcmelihceehhaodggfeffm

    It creates a small icon next to the URL bar that indicates whether or not it thinks the page was created using Angular, although I have not thoroughly tested its validity.

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

    enter image description hereThe best way to check is to write "angular" on browser console. If you get any object [With child objects as "bind","bootstrap","callbacks","module" etc.] then its an angular web app.

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

    You could try: angular.version.full first. If this doesn't work, try getAllAngularRootElements()[0].attributes["ng-version"]. The reason being in Angular 1 the former will work and from angular 2 onwards the later will work.

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

    You can install a Chrome or Firefox extension called Augury. It tells you if app is an angular or not.

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