I've seen many variations to loading modules which do not support AMD yet, and I would like to know what is the best practice to do so.

Eventually, I would like to write modules like this:

module.js:

define(["jQuery", "Underscore", "Backbone"], function($, _, Backbone) {
    ... module code here
}

But there are a lot of problems with loading those dependencies using AMD since they are not all AMD compliant.

link|improve this question

70% accept rate
1  
What do you mean by AMD? Not the CPU family, right? – Thilo Dec 26 '11 at 9:02
1  
Nope. Asynchronous module definition. Poor choice of TLA I must admit... :) – Ron Reiter Dec 26 '11 at 9:02
1  
A few years back (before the Intel switch, I think), the Mac rumour groups were abuzz with code references to amd. Back then, it was the auto-mount-daemon. ;-) – Thilo Dec 26 '11 at 9:06
feedback

3 Answers

up vote 3 down vote accepted

I've created a todo-list boilerplate web app which loads all modules as AMD modules (without loaders).

Check it out:

https://github.com/ronreiter/webapp-boilerplate

link|improve this answer
feedback

Thomas Davis has a better example (imo) for loading jquery/underscore/backbone in his non-updated example. Start by looking at the loader here

It uses the RequireJS order plugin found here to load the modules synchronously.

link|improve this answer
feedback

Take a look at this example. It nicely shows how to use backbone along with requirejs. It also shows how you can organize the model, view and collections neatly.

link|improve this answer
Looks like the example is an updated version, and not what the tutorial explains in the website. Thanks. – Ron Reiter Dec 26 '11 at 14:12
feedback

Your Answer

 
or
required, but never shown

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