tiny-browser-require icon indicating copy to clipboard operation
tiny-browser-require copied to clipboard

A tiny, simple CommonJS require() implemetation in browser-side

Tiny Browser Require

A tiny, simple CommonJS require() implemetation in browser-side, only 30+ lines.

Usage

First put require.js on your page.

<script src="require.js" />

Then use require.register to register your module.

require.register("browser/debug.js", function(module, exports, require){
  // Module code goes here
});

Now you can use require function to load the module.

var debug = require("browser/debug.js");

License

MIT