Skip to content

Instantly share code, notes, and snippets.

@huang-x-h
Last active August 29, 2015 14:05
Show Gist options
  • Save huang-x-h/129e461a414c8c27ab4c to your computer and use it in GitHub Desktop.
Save huang-x-h/129e461a414c8c27ab4c to your computer and use it in GitHub Desktop.
Making Your Library Support AMD and CommonJS
(function (root, factory) {
if(typeof define === "function" && define.amd) {
// Now we're wrapping the factory and assigning the return
// value to the root (window) and returning it as well to
// the AMD loader.
define(["postal"], function(postal){
return (root.myModule = factory(postal));
});
} else if(typeof module === "object" && module.exports) {
// I've not encountered a need for this yet, since I haven't
// run into a scenario where plain modules depend on CommonJS
// *and* I happen to be loading in a CJS browser environment
// but I'm including it for the sake of being thorough
module.exports = (root.myModule = factory(require("postal")));
} else {
root.myModule = factory(root.postal);
}
}(this, function(postal) {
// module code here....
return myModule;
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment