• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Debugging JavaScript and Freemarker Code

 
Ranch Hand
Posts: 226
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What tools can I use to debug JavaScript code and Freemarker template code? Does anyone have any tips for debugging JavaScript code and Freemarker template code?
 
Ranch Hand
Posts: 384
Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi Fred,

You can use FireBug addon with your firefox to debug your JavaScript.

I am not sure about Freemarker as of now. Don't know even is it possible right now.

cheers

 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JavaScript runs on the client, whereas FreeMarker is interpreted on the server, so most debugging approaches will work for both as they're focused on one side but not the other. I think IDEs like IntelliJ, Eclipse and NetBeans allow combined client and server debugging.
 
clojure forum advocate
Posts: 3479
Mac Objective C Clojure
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Im' not really sure what are you doing to achieve but since you mentioned JavaScript and FreeMarker, have a look at Handlebars.js or Dust.js
Maybe both will ring a bell to you?
 
reply
    Bookmark Topic Watch Topic
  • New Topic