GWT alternatives??
https://news.ycombinator.com/item?id=3769007I've noticed there seems to be a few frameworks in python (Such as the Pyjamas project, or Pyjs) that allow you to code in a consistent language like Python or Java and output fairly fast, optimized Javascript front ends. I've been hammering away at using GWT for my front end, mostly because it creates the split browser specific resources and optimizes things like image loading via ImageBinder. I'm a big fan of these optimizations, but I find that I spend 90% of my time configuring environments, dealing with obtuse error messages, dealing with idiosyncrasies of project layouts, screwing with Maven, etc etc etc. I spend less than 10% dealing with the business problem and it's a bit frustrating.
I've looked at frameworks like Pyjamas, Ukijs, Sencha etc. I really like Sencha, but of course it's pretty much overkill at this point. Pyjamas and Ukijs both seem to be mising any recent coding activity and don't really address the optimizations I am after. Does anyone have any suggestions on frontend widget libraries that are lightweight, well supported and perhaps can simulate the Imagebinder functionality? Or should I just bite the bullet and keep plugging away with Gwt/Gxt etc?
Backend I am doing (preferably) Json/Restful services for everything . Thanks for your input :)