Lighthouse 現在支援效能預算。這項功能稱為 LightWallet,在五分鐘內就能設定完成,並針對成效指標、網頁資源大小和數量提供意見回饋。
安裝 Lighthouse
Lighthouse 的指令列版本為 Lighthouse v5 以上版本。
如要開始使用,請安裝 Lighthouse:
npm install -g lighthouse
設定預算
建立名為 budget.json
的檔案。在這個檔案中,新增以下 JSON:
[
{
"path": "/*",
"timings": [
{
"metric": "interactive",
"budget": 3000
},
{
"metric": "first-meaningful-paint",
"budget": 1000
}
],
"resourceSizes": [
{
"resourceType": "script",
"budget": 125
},
{
"resourceType": "total",
"budget": 300
}
],
"resourceCounts": [
{
"resourceType": "third-party",
"budget": 10
}
]
}
]
這個 budget.json
檔案範例設定了五筆預算:
- 用於互動準備時間的預算為 3000 毫秒。
- 首次有效繪製的 1000 毫秒預算
- 針對網頁上的 JavaScript 總數量,設定 125 KB 的預算。
- 網頁整體大小的預算為 300 KB。
- 針對向第三方來源發出的要求數量提出 10 個請求的預算。
如需支援的成效指標和資源類型完整清單,請參閱 Lighthouse 文件的「Performance 預算」一節。
執行 Lighthouse
使用 --budget-path
旗標執行 Lighthouse。這個標記可讓 Lighthouse 得知預算檔案的位置。
lighthouse https://example.com --budget-path=./budget.json
查看結果
如果 Lighthouse 設定正確無誤,Lighthouse 報表會在「成效」類別中加入「預算」部分。
在 JSON 版本的 Lighthouse 報告中,您可以在 performance-budget
稽核的稽核結果中找到 Lightwallet 結果。