如题,require方法定义都找不到,唯一能找到的就是下面一行信息
this.require { [Function: require] resolve: [Function], main: undefined, extensions: { '.js’: [Function], '.json’: [Function], '.node’: [Function] }, registerExtension: [Function], cache: {} } console对象,也没找到
6 回复
#console定义 https://github.com/joyent/node/blob/master/src/node.js
startup.globalConsole = function() {
global.__defineGetter__('console', function() {
return NativeModule.require('console');
});
};
#console实现 https://github.com/joyent/node/blob/master/lib/console.js