What is the best way to load CommonJS modules as client-side javascript in the browser?

CommonJS modules put their functionality in the module.exports namespace and are usually included using require(pathToModule) in a server-side script. Loading them on the client cannot work the same way (require needs to be replaced, asynchronousness needs to be taken into account etc.)

I have found module loaders and other solutions: Browserify, RequireJS, yabble, etc. or ways to simply alter the modules. What do you consider the best way and why?

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

Can't say I've tried the others you've listed here but I like RequireJS because:

  • It works in a similar way to CommonJS
  • It's easy to use
  • It implements some of the upcoming new standards
  • You can use it in NodeJS so that you can use the same files in server and client
  • It includes a minifier/packer for deploying to producion
  • It has plugins. The Text plugin, that lets you load HTML files, is very useful for large apps.
link|improve this answer
After having used RequireJS for a while I'm planning on switching to Browserify. RequireJS is still good but I got to the point where I needed to start really sharing certain modules between Node and the browser and it's easier to do by writing proper CommonJS modules. – evilcelery May 2 at 21:30
feedback

What about Browserify? Its description is: "Browser-side require() for your node modules and npm packages" which sounds what you need.

link|improve this answer
feedback

Here is a quiet comprehensive list of your current options ordered by their respective popularity (number of watchers) on GitHub:

Options for use of require() in the browser

link|improve this answer
feedback

You can try SeaJS which I think is the best choice for running CommonJS modules in browsers:

  • Different from RequireJS, the module authoring format of SeaJS is more similar to CommonJS.
  • Its API is more clear and easy to use.
  • The modules in SeaJS can directly be loaded in NodeJS.
  • It is more lazy than RequireJS.
link|improve this answer
1  
Of course you think it's the best. You're the author. Might want to mention that. – Robert Massa Dec 24 '11 at 11:43
feedback

Your Answer

 
or
required, but never shown

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