Google Lighthouse JSON报告被截断

时间:2019-02-13 18:31:00

标签: node.js google-chrome lighthouse

我使用Google Lighthouse作为节点模块,通过以下代码段以编程方式检索页面洞察报告:

let opts = {
    chromeFlags: ['--headless'],
    output: 'json'
};

let report = await chromeLauncher.launch({chromeFlags: opts.chromeFlags}).then(chrome => {
    opts.port = chrome.port;
    // Launch lighthouse, attached to the chrome instance we just launched
    return lighthouse(target_url, opts).then(results => {
        // Kill the chrome instance and return our results to the promise
        return chrome.kill().then(() => results.report)
    });
});

其中chromeLauncher是chrome-launcher程序包的实例,而lighthouse是lighthouse程序包的实例。

无论我设置为target_url的网站是什么,我在report中收到的JSON总是在同一点被截断,最后一个字符是反引号。

每次将输出设置为“ html”都会检索完整的,功能正常的HTML报告。

没有任何错误或异常发生。我已经阅读了官方存储库中的文档和示例,但是由于为什么我没有收到整个JSON报告而感到困惑。

编辑:我还应该注意,从全局命令行工具非编程方式使用灯塔工具不会出现问题-整个JSON报告都已传递到STDOUT。

0 个答案:

没有答案