Click here to Skip to main content
15,892,298 members
Articles / Programming Languages / Javascript

#javascript Require.js vs CommonJS / AMD modules and #angularjs

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
17 Mar 2014CPOL2 min read 12.7K   2   6
#javascript Require.js vs CommonJS / AMD modules and #angularjs

I recently replied to the following twitter conversation about require.js vs browserify.


Angular.js and AMD

Recently, I tried to integrate some AMD modules into an angularjs application. I did not spent much time on it but I was under the impression that the integration was not straightforward.

On this twitter thread, @tbranyen pointed to me that using the angular dependency injection annotations, I can easily reuse my existing require.js modules. I must give it a try on my next project.

AMD vs CommonJS

First of all, I must say that I can understand the arguments from the CommonJS supporters, but the require.js configuration file gives me extra powers...

An awesome feature of requirejs is that you can create different execution context. This means that you can, for instance, load different versions of the same module into two different context executions. This can be very powerful.

I'm using this on my js-utils project to make it just a repository of modules without hard dependencies. This means that js-utils node_modules folder will have just a few references.

JavaScript
var requirejs = require('requirejs');

requirejs = requirejs.config({

    /// isolate this context
    context: 'context1',

    /// use local packages, located on node_modules
    nodeRequire: require,

    /// modules baseurl
    baseUrl: __dirname,

    /// the lookup paths
    paths: [ ... ]

});

I do not consider myself a fanboy of require.js because:

  • I know that its complexity demands a bigger learning curve that it's not always required.
  • I know that browserify is more easy and compatible with node modules.
  • I know that its syntax can be very verbose.
  • I know that r.js needs a lot of improvements.
  • I know that r.js source maps are almost useless (the variables and functions are already minified).

But I also know that:

  • I can create complex dependencies on require.js config file
  • I can create friendly alias on require.js config file
  • I can easily change version of the dependencies just by changing the configuration file
  • I can use different execution contexts

If I said anything wrong, please let me know because I really want to hear your thoughts on this matter!

@aetheon

Visit www.divhide.com for more information, contacts and news about Web Development.
See other blog posts at blog.divhide.com.

Divhide purpose is to follow the HTML5 movement and contribute with applications which prove the quality of technology.
Feel free to contact divhide.

This article was originally posted at http://blog.divhide.com

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Portugal Portugal
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionJS Including Engine Pin
Alexandru Lungu24-Mar-14 2:50
professionalAlexandru Lungu24-Mar-14 2:50 
QuestionRequireJS / AngularJS Pin
Kenneth Kasajian18-Mar-14 16:27
Kenneth Kasajian18-Mar-14 16:27 
AnswerRe: RequireJS / AngularJS Pin
aetheon18-Mar-14 22:38
aetheon18-Mar-14 22:38 
GeneralRe: RequireJS / AngularJS Pin
Kenneth Kasajian19-Mar-14 15:40
Kenneth Kasajian19-Mar-14 15:40 
Maybe we're doing different things.

1. We have one different is that we're doing Single Page Applications. There's really only one main HTML file where all the .js files are loaded, once. The rest of them are just partial HTML files that get swapped in and out.

And it didn't seem like a big problem to list all the .js files in the bundle. So we don't have to do this across many .js files.

2. I don't know how your build / bundling system is, but we have to list all of the .js files up front anyway so that the build step will bundle it / minify it, etc., So that's a requirement I can't get away from. And, since I'm doing that anyway, there's no work for me to add the .js files in the .html because the Bundling process just inserts those tags for me.
<div class="signature">ken@kasajian.com / www.kasajian.com</div>
GeneralRe: RequireJS / AngularJS Pin
aetheon19-Mar-14 22:12
aetheon19-Mar-14 22:12 
GeneralRe: RequireJS / AngularJS Pin
Kenneth Kasajian27-May-14 11:07
Kenneth Kasajian27-May-14 11:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.