0

Suppose that I am on a site that is using GWT and I want to find out what version of GWT it is using. How can I do this?


If the site was using dojo, I would use the following in the console:

dojo.version

Source.


JQuery also has similar functionality:

jQuery.fn.jquery

Source.


How can I do this in GWT?

Community
  • 1
  • 1
sixtyfootersdude
  • 25,859
  • 43
  • 145
  • 213

1 Answers1

4

AFAIK: there is no simple way of getting the GWT version from a deployed GWT app.

However you can have a look at the Chrome Extension "Library Detector" which supports GWT (also the version). I tested it and at least for normal deployed GWT apps it works.

The code for how it does it can be found here.

Ümit
  • 17,379
  • 7
  • 55
  • 74