在开发工具中使用Chrome 60时,会有一个Audits Panel带有一些分数(由Lighthouse提供支持)。渐进式Web应用程序,性能,可访问性和最佳实践顶部的分数是您对这些类别中每个类别的综合分数。
您是否认为可以在Chrome中使用某些Javascript
代码访问这些分数?
最佳答案
您可以从the command line运行Lighthouse:
npm install -g lighthouse
lighthouse --output=json --output-path=./report.json https://airhorner.com/
这将产生一个
./report.json
,您的脚本可以使用它。也可以从节点脚本中运行Lighthouse。文档中没有对此进行描述,但是您可以查看other tools的运行方式(例如webpack-lighthouse-plugin)。