7

我正在尝试这样require修改

require = function (path) {
    try {
        return module.require(path);
    } catch (err) {
        console.log(path)
    }
}

但是,此修改的范围仅在当前模块中。我想全局修改它,所以require这个模块的每个模块也将获得相同的require函数副本。

基本上,我想SyntaxError知道哪个文件有问题。我似乎找不到任何其他选择。如果我放入module.require块中try/catch,我将能够获得导致SyntaxError.

4

2 回答 2

9

我设法通过修改类的原型函数来解决requireModule。我把它放在主脚本中,它可用于所有required 模块。

var pathModule = require('path');
var assert = require('assert').ok;

module.constructor.prototype.require = function (path) {
    var self = this;
    assert(typeof path === 'string', 'path must be a string');
    assert(path, 'missing path');

    try {
        return self.constructor._load(path, self);
    } catch (err) {
        // if module not found, we have nothing to do, simply throw it back.
        if (err.code === 'MODULE_NOT_FOUND') {
            throw err;
        }
        // resolve the path to get absolute path
        path = pathModule.resolve(__dirname, path)

        // Write to log or whatever
        console.log('Error in file: ' + path);
    }
}
于 2013-11-12T04:29:40.083 回答
0

为什么不在代码中使用 try-catch 块,一旦发生错误检查堆栈跟踪。查看这些链接

于 2013-11-11T10:40:35.107 回答