每个模块实例都有一个require方法
Module.prototype.require = function(path){
return Module._load(path,this);
}
由此可知,require并不是全局性命令,而是每个模块提供的一个内部方法。