If I understand correctly, both GWT and Google Closure are JS API's for building web applications. What is the difference between them?
|
Closure is a JavaScript library (really more like a collection of libraries, but that are all packaged as a single library and that can be imported using GWT is a Java toolkit (and associated libraries) that can take code written purely in Java, and convert it into HTML, CSS, and JavaScript, allowing a web application to be written purely in Java (but served as a real, HTML5 website, rather than as an annoying, slow-to-load Java applet). A project written in GWT can make use of the Closure library and can include JavaScript code. However, Closure is really targeted toward developers writing JavaScript, while GWT is for Java developers. To summarize... Use Closure when:
Use GWT when:
|
||||
|