It seems to be that if you are using RequireJS and you use define
and require
, then there is not point of using IIFE as well, since each module is already wrapped in a define
/require
. Is that the case?
In other words, does this code
define(['app'], function(app)
{
app.run();
});
has any difference/advantage to
(function() {
define(['app'], function(app)
{
app.run();
});
})();
The
define()
function is in Global scope anyway, so calling it inside an IIFE doesn't make a difference at all and it's kind of redundant.It would be different if you put code outside of the
define
callback but you shouldn't do that because each file should represent an encapsulated module.The only time I can think of using an IIFE with RequireJS might be when I'm configuring my application by calling
require.config()
before initialization; but even then if I'm just callingrequire.config()
and don't have any code on the outside, I still wouldn't use an IIFE.In this example here there wasn't a need to use an IIFE: https://github.com/vasilionjea/bower-requirejs-starter/blob/master/local/js/main.js
I hope that answers your question.