Live data from Hacker News

GWT just got a new look

gwtproject.org

21–30 of 70 posts

Re: GWT just got a new look

#21
post #3

Gah! Again! People not explaining what something is on the landing page! > GWT is used by many products at Google, including Google AdWords and Google Wallet. It's open source, completely free, and used by thousands of enthusiastic developers around the world. Any amount of things fit that description. Beer? Air? Clicking "Learn about GWT" gets you this: > GWT is a development toolkit for building and optimizing comp…

I wonder though, why they don't mention the latest Google Inbox, which is also done in GWT.

Re: GWT just got a new look

#22
Seems to me the textbook example of Java people trying to make everything Java (and failing at it, as usual)

While it's funny (and sometimes silly) to see a huge amount of .js libraries popping up, they're not adding a big block between the programmer and the browser.

And js may have its quirks, but it's not java and I'm thankful for that. I'd rather use js over java anyday, unless there's something really dependent on it.

Re: GWT just got a new look

#23

I've never knowingly seen GWT used in practice. Does anyone have any examples of (semi) notable websites utilising it?

I worked for a big French bank for a few months about 3 years ago and they were using it on a few of their projects (CRM, budget planner).

Re: GWT just got a new look

#24
post #15

I've never knowingly seen GWT used in practice. Does anyone have any examples of (semi) notable websites utilising it?

According to an HN comment by user cromwellian, it's widely used inside Google including the new Inbox mail app: https://news.ycombinator.com/item?id=8554339 Other references mentioned by the poster are "Apple (iAds Workspace), Amazon (AWS Console), Nike".

Though it's worth noting that Inbox and similar properties do not use it for UI code, but only (exclusively) for business logic below the UI layer. UI code is written in pure JavaScript/Closure.

Re: GWT just got a new look

#26

I've never used GWT, but it looks a lot like ASP.NET (all the button declarations in code, heavy page lifecycle in code, etc.). Can anyone with ASP.NET knowledge comment on that? ASP.NET has many problems, there are valid reasons why most developers are moving towards ASP.NET MVC so I wonder what is the place for GWT in modern web dev.

First difference is that ASP.NET is running on the server side. GWT is fully compiled to JavaScript and runs in browser. The server doesn't even need to be Java, can be even plain web server without server side code. With GWT you typically develop one-page web applications.

As of doing everything in code - not necessary. As of now GWT has UiBinder - it is a kind of template or DOM + widgets, where you then bind code to it. But in upcoming 3.0 it will use web components standard (http://www.w3.org/TR/components-intro/)

Re: GWT just got a new look

#27
post #24
post #15

Earlier quoted context omitted.

According to an HN comment by user cromwellian, it's widely used inside Google including the new Inbox mail app: https://news.ycombinator.com/item?id=8554339 Other references mentioned by the poster are "Apple (iAds Workspace), Amazon (AWS Console), Nike".

Though it's worth noting that Inbox and similar properties do not use it for UI code, but only (exclusively) for business logic below the UI layer. UI code is written in pure JavaScript/Closure.

Huh? I didn't know GWT had any non-UI functionality.

Re: GWT just got a new look

#28
post #25

GWT pronounced «gwit» Seriously? First I've heard this is how you pronounce it. And how does one pronounce gwit? I think I'll continue to call it: G.W.T.

First I've heard of this too.

Obviously "gwit" is pronounced as "jwit", right?

Re: GWT just got a new look

#29

I've never knowingly seen GWT used in practice. Does anyone have any examples of (semi) notable websites utilising it?

Moreover Newsdesk, a reasonably large media monitoring platform is pretty much solely based on GWT, though it looks like they are moving away from it in their new development.

Re: GWT just got a new look

#30

I've never knowingly seen GWT used in practice. Does anyone have any examples of (semi) notable websites utilising it?

Some other lists:

- http://trends.builtwith.com/websitelist/Google-Web-Toolkit - but this might be seriously underestimated, as they are not able to detect services accessible after login, where GWT is mostly used.

- http://ars-codia.raphaelbauer.com/2011/12/why-google-web-too...

Other that I'm aware of:

- https://www.cloudorado.com/

- https://ruxit.com/ - their service once you log in

- http://gogrid.com/ - again after login

Post reply on HN