54

在运行之前,我需要检查是否安装了“mocha”。我想出了以下代码:

try {
    var mocha = require("mocha");
} catch(e) {
    console.error(e.message);
    console.error("Mocha is probably not found. Try running `npm install mocha`.");
    process.exit(e.code);
}

我不喜欢捕捉异常的想法。有没有更好的办法?

4

2 回答 2

90

您应该使用require.resolve()而不是require(). require如果找到,将加载库,但require.resolve()不会,它将返回模块的文件名。

请参阅require.resolve 的文档

try {
    console.log(require.resolve("mocha"));
} catch(e) {
    console.error("Mocha is not found");
    process.exit(e.code);
}

如果找不到模块,require.resolve() 确实会抛出错误,因此您必须处理它。

于 2013-03-08T21:02:40.757 回答
3

module.paths存储 的搜索路径数组require。搜索路径相对于require调用的当前模块。所以:

var fs = require("fs");

// checks if module is available to load
var isModuleAvailableSync = function(moduleName)
{
    var ret = false; // return value, boolean
    var dirSeparator = require("path").sep

    // scan each module.paths. If there exists
    // node_modules/moduleName then
    // return true. Otherwise return false.
    module.paths.forEach(function(nodeModulesPath)
    {
        if(fs.existsSync(nodeModulesPath + dirSeparator + moduleName) === true)
        {
            ret = true;
            return false; // break forEach
        }
    });

    return ret;
}

和异步版本:

// asynchronous version, calls callback(true) on success
// or callback(false) on failure.
var isModuleAvailable = function(moduleName, callback)
{
    var counter = 0;
    var dirSeparator = require("path").sep

    module.paths.forEach(function(nodeModulesPath)
    {
        var path = nodeModulesPath + dirSeparator + moduleName;
        fs.exists(path, function(exists)
        {
            if(exists)
            {
                callback(true);
            }
            else
            {
                counter++;

                if(counter === module.paths.length)
                {
                    callback(false);
                }
            }
        });
    });
};

用法:

if( isModuleAvailableSync("mocha") === true )
{
    console.log("yay!");
}

或者:

isModuleAvailable("colors", function(exists)
{
    if(exists)
    {
        console.log("yay!");
    }
    else
    {
        console.log("nay:(");
    }
});

编辑:注意:

  • module.paths不在API中
  • Documentation states that you can add paths that will be scanned by require but I couldn't make it work (I'm on Windows XP).
于 2013-03-08T21:29:37.683 回答