I'm trying to load backbone and underscore (and jquery) with requirejs. With the latest versions of backbone and underscore, it seems kind of tricky. For one, underscore automatically registers itself as a module, but backbone assumes underscore is available globally (unless using synchronous AMDs, it seems). I should also note that backbone doesn't seem to register itself as a module which makes it kind of inconsistent with the other libs. This is the best main.js I could come up with that works:

require(
{
    paths: {
        'backbone': 'libs/backbone/backbone-require',
        'templates': '../templates'
    }
},
[
    // jQuery registers itself as a module.
    'http://cdnjs.cloudflare.com/ajax/libs/jquery/1.7/jquery.min.js',

    // Underscore registers itself as a module.
    'http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.2.1/underscore-min.js'
], function() {

    // These nested require() calls are just due to how Backbone is built.  Underscore basically says if require()
    // is available then it will automatically register an "underscore" module, but it won't register underscore
    // as a global "_".  However, Backbone expects Underscore to be a global variable.  To make this work, we require
    // the Underscore module after it's been defined from within Underscore and set it as a global variable for
    // Backbone's sake.  Hopefully Backbone will soon be able to use the Underscore module directly instead of
    // assuming it's global.
    require(['underscore'], function(_) {
        window._ = _;
    });

    require([
        'order!http://cdnjs.cloudflare.com/ajax/libs/backbone.js/0.5.3/backbone-min.js',
        'order!app'
    ], function(a, app) {
        app.initialize();
    })
});

I should mention that, while this works, the optimizer chokes on it. I receive the following:

Tracing dependencies for: main
js: "/home/httpd/aahardy/requirejs/r.js", line 7619: exception from uncaught JavaScript throw: Error: Error: Error evaluating module "undefined" at location "/home/httpd/aahardy/phoenix/trunk/ui/js/../../ui-build/js/underscore.js":
JavaException: java.io.FileNotFoundException: /home/httpd/aahardy/phoenix/trunk/ui/js/../../ui-build/js/underscore.js (No such file or directory)
fileName:/home/httpd/aahardy/phoenix/trunk/ui/js/../../ui-build/js/underscore.js
lineNumber: undefined
http://requirejs.org/docs/errors.html#defineerror
In module tree:
    main

Is there a better way of handling this? Thanks!

link|improve this question

Did you do it using any tutorial? – kaha Nov 15 '11 at 4:08
I looked through various tutorials like backbonetutorials.com/organizing-backbone-using-modules but they seem to be outdated now with the latest versions of underscore and backbone. – Aaronius Nov 15 '11 at 4:11
feedback

5 Answers

up vote 86 down vote accepted

Update: As of version 1.3.0 Underscore removed AMD (RequireJS) support.

You can use the amdjs/Backbone 0.9.1 and the amdjs/Underscore 1.3.1 fork with AMD support from James Burke (the maintainer of RequireJS).

More info about AMD support for Underscore and Backbone.

// main.js using RequireJS 1.0.7
require.config({
    paths: {
        'jquery': 'libs/jquery/1.7.1/jquery',
        'underscore': 'libs/underscore/1.3.1-amdjs/underscore', // AMD support
        'backbone': 'libs/backbone/0.9.1-amdjs/backbone', // AMD support
        'templates': '../templates'
    }
});

require([
    'domReady', // optional, using RequireJS domReady plugin
    'app'
], function(domReady, app){
    domReady(function () {
        app.initialize();
    });
});

The modules are properly registered and there is no need for the order plugin:

// app.js
define([
    'jquery', 
    'underscore',
    'backbone'
], function($, _, Backbone){
    return {
        initialize: function(){
            // you can use $, _ or Backbone here
        }
    };
});

Underscore is actually optional, because Backbone now gets its dependencies on its own:

// app.js
define(['jquery', 'backbone'], function($, Backbone){
    return {
        initialize: function(){
            // you can use $ and Backbone here with
            // dependencies loaded i.e. Underscore
        }
    };
});

With some AMD sugar you could also write it like this:

define(function(require) {
    var Backbone = require('backbone'),
        $ = require('jquery');

    return {
        initialize: function(){
            // you can use $ and Backbone here with
            // dependencies loaded i.e. Underscore
        }
    };
});

Regarding the optimizer error: doublecheck your build configuration. I assume your path configuration is off. If you have a directory setup similar to the RequireJS Docs you can use:

// app.build.js
({
    appDir: "../",
    baseUrl: "js",
    dir: "../../ui-build",
    paths: {
        'jquery': 'libs/jquery/1.7.1/jquery',
        'underscore': 'libs/underscore/1.3.1-amdjs/underscore',
        'backbone': 'libs/backbone/0.9.1-amdjs/backbone',
        'templates': '../templates'
    }, 
    modules: [
        {
            name: "main"
        }
    ]
})
link|improve this answer
2  
That's exactly what I was looking for. Thank you! Great detailed answer as well. It's now running just as you've described. – Aaronius Nov 17 '11 at 5:47
1  
+1 accurate, working and updated answer+examples. excellent job Riebel, you've help me, and i'm sure others, a lot. – Ken Dec 6 '11 at 14:04
3  
Super-bonus for keeping this updated long after the original post. – Aaronius Jan 21 at 6:36
1  
Tim Branyen, the creator of Backbone, has also created the Use.js plugin for Require.js. See also AMD/RequireJS Shim Plugin for Loading Incompatible JavaScript. – Arjan Mar 13 at 10:42
Great answer @Riebel ! It's been really useful to me. Btw, I would also recommend to have a look at volo. It's a library created by jrburke (the creator of requirejs) to retrieve dependencies from github. For example retrieving the amd version of underscore is done just typing: volo add underscore – user433831 Apr 17 at 7:10
show 1 more comment
feedback

Also, as a further note, Tim Branyen has created the use plugin for requirejs to load non-AMD modules. This is what I'm playing around with, and seems a bit cleaner than shim file/defines

Blog post: http://tbranyen.com/post/amdrequirejs-shim-plugin-for-loading-incompatible-javascript

GitHub: https://github.com/tbranyen/use.js

(code ruthlessly lifted from Tim's blog, thanks Tim, great plugin ;)

// Set the RequireJS configuration
require.config({
  use: {
    backbone: {
      deps: ["use!underscore", "jquery"],
      attach: function() {
        // If you plan on loading any plugins for Backbone, do not use this
        // approach of removing it from the global scope.  They will be
        // unable to find Backbone.
        return window.Backbone.noConflict();
      }
    },

    underscore: {
      attach: "_"
    }
  }
});
link|improve this answer
feedback

As a side note... Here are a few sample apps that use RequireJS and Backbone together...

https://github.com/jcreamer898/RequireJS-Backbone-Starter
https://github.com/david0178418/BackboneJS-AMD-Boilerplate
https://github.com/swbiggart/node-express-requirejs-backbone

A few of those have build scripts in them to show you how that works.

link|improve this answer
feedback

I have created my own plugin that is used as wrapper for give support to any lib that doesn't support official requirejs.

https://github.com/gartz/RequireJS-Wrapper-Plugin

It's very easy to use. Supports global var wrapper and dependencies declaration.

Somehow is similar to "use" plugin from Christopher Scott post, but smaller than it.

link|improve this answer
I'm a bit dizzy from trying to figure out how to share code between a Node.js server and a web client using requirejs. So I can't really discern the merits of your approach...although it managed to load underscore.js on both Node.js as well as a client (which "use" did not, because of explicit mention of window?) I think it was a fluke though due to the fact underscore was installed via npm, and the r fallback case worked...non-npm modules didn't. It would be nice if you guys could join forces and make just a single plugin that serves this simple purpose...so maybe you can discuss that! – HostileFork Apr 25 at 0:35
I'm using my plugin and use for test porpouses, somethings in the use.js are more mature then my plugin, and I liked the name of the plugin. So I'm thinking about contribute with the project. Remove window dependence is a easy task, so this week will fork and release an update. Thank you for the comment :) – Gabriel Gartz Apr 25 at 3:41
feedback

If you want to see an example of the Use plugin, here is a Backbone.js and Require.js Boilerplate that I created: https://github.com/gfranko/Backbone-Require-Boilerplate

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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