兼容多种模块规范的 javascript 模块化写法
;(function(name,definition){
var hasDefine = typeof define === 'function', // 检测上下文环境是否为 AMD 或者 CMD
hasExports = typeof module !== 'undefined' && module.exports; // 检查上下文是否为 node
if(hasDefine){
define(definition); // AMD 或者 CMD 环境
}else if(hasExports){
module.exports = definition(); // 定义为普通 node 模块
}else{
this[name] = definition(); // 将模块的执行结果挂载在 window 变量中,在浏览器中 this 指向 window 变量。
}
})('hello',function(){ // 此处 hello 只是作为模块化的示例名称
var hello = function(){};
return hello;
})
不过此种写法要保证前端引用或者后端使用没有全局的 define 函数覆盖 AMD 或者 CMD 的 define 函数。
此代码来源于 深入浅出Node.js P45 2.7.4,此处为记录以及熟悉。