Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What advantages does Require.JS offer in comparison to simply creating a element in the DOM? My understanding of Require.JS is that it offers the ability to load dependencies. But can this not simply be done by creating a element that loads the necessary external JS file?

For example, lets assume I have the function doStuff(), which requires the function needMe(). doStuff is in the external file do_stuff.js, while needMe() is in the external file need_me.js.

Doing this the Require.JS way:

do_stuff.js

define(['need_me'],function(){
    function doStuff(){
        //do some stuff
        needMe();
        //do some more stuff
    }
});

Doing this by simply creating a script element:

do_stuff.js

function doStuff(){
    var scriptElement  = document.createElement('script');
    scriptElement.src = 'need_me.js';
    scriptElement.type = 'text/javascript';
    document.getElementsByTagName('head')[0].appendChild(scriptElement);

    //do some stuff
    needMe();
    //do some more stuff
}

Both of these work. However, the second version doesn't require me to load all of the Require.js library. So is the second one better for what I need to do? If so, under what circumstances would Require.js be advantageous?

share|improve this question

1 Answer

up vote 18 down vote accepted

Here is the nice article on ajaxian.com as to why use it:

RequireJS: Asynchronous JavaScript loading

  • some sort of #include/import/require
  • ability to load nested dependencies
  • ease of use for developer but then backed by an optimization tool that helps deployment
share|improve this answer
1  
I had read those, but now that I think about it more I realize that the idea of nested dependencies cannot be achieved by simply writing <script> tags. Thanks. – maxedison Feb 6 '11 at 18:53
   
@maxedison: Welcome :) – Sarfraz Feb 6 '11 at 18:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.