Using RequireJS exports with CoffeeScript

If you are using the “exports” object in your RequireJS module definition and happen to also be using CoffeeScript then be careful to either return the exports object at the end of the function or explicitly return nothing from the function by typing “return” on the last line. Like so:

define((require, exports, module) ->
    exports.foo = 'bar'
    return
)

If you don’t return nothing or the exports object CoffeeScript will compile this:

define((require, exports, module) ->
    exports.foo = 'bar'
)

…to the following javascript:

define(function(require, exports, module) {
    return exports.foo = 'bar';
});

Where the return value will be the string ‘bar’. This is no good because if you return a value from your module definition function, RequireJs uses it instead of the exports object. So when you come to require your module, you’ll be passed a String, rather than an object with a “foo” property as you’d expect.

17,661 thoughts on “Using RequireJS exports with CoffeeScript

  1. Hey very nice site!! Guy .. Excellent .. Wonderful .. I’ll bookmark your website
    and take the feeds also…I am happy to search out numerous helpful info here within the submit,
    we want work out extra techniques in this regard, thanks for sharing.

    Look into my homepage; best seo company near me

  2. Somebody necessarily assist to make critically posts I’d state.
    That is the very first time I frequented your website page and so far?

    I surprised with the research you made to create this actual
    publish extraordinary. Excellent job!

    Feel free to surf to my web blog best seo company near me

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>