3

What is the difference between the normal and the min qoodoo js file?

Which file should I use to write some js for my web browser?

ROMANIA_engineer
  • 54,432
  • 29
  • 203
  • 199
Jenia Ivanov
  • 2,485
  • 3
  • 41
  • 69
  • 2
    possible duplicate of [What's the difference between jquery.js and jquery.min.js?](http://stackoverflow.com/questions/3475024/whats-the-difference-between-jquery-js-and-jquery-min-js) – epascarello Apr 30 '13 at 00:45

2 Answers2

6

They have exactly the same functionality. However, javascript is often minfied to reduce the amount of code that is transferred from your server to your client's browser over the wire. For debugging, the normal file may suit you better. For production, the minified file (min qoodoo js) will be better because page loads will be quicker.

Steven Wexler
  • 16,589
  • 8
  • 53
  • 80
0

qooxdoo.js - regular JS version qooxdoo.min.js - minified JS version

By using minified version of files following advantages could be experienced.

  • It will drastically reduce loading times and bandwidth usage on your website.
  • It also improves site speed and accessibility, directly translating into a better user experience.

Minification has become standard practice for page optimization

Basically the functionality is exactly the same except the readability hence better use minified version in your PROD environment and keep regular version for debugging purposes.

Du-Lacoste
  • 11,530
  • 2
  • 71
  • 51