This repository has been archived by the owner on Jun 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lighthouse.json
2353 lines (2353 loc) · 99.6 KB
/
lighthouse.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"lighthouseVersion": "1.6.0",
"generatedTime": "2017-04-05T00:09:21.786Z",
"initialUrl": "https://fast-harbor-58566.herokuapp.com/",
"url": "https://fast-harbor-58566.herokuapp.com/",
"audits": {
"is-on-https": {
"score": true,
"displayValue": "",
"rawValue": true,
"name": "is-on-https",
"category": "Security",
"description": "Uses HTTPS",
"helpText": "All sites should be protected with HTTPS, even ones that don't handle sensitive data. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/https)."
},
"redirects-http": {
"score": true,
"displayValue": "",
"rawValue": true,
"name": "redirects-http",
"category": "Security",
"description": "Redirects HTTP traffic to HTTPS",
"helpText": "If you've already set up HTTPS, make sure that you redirect all HTTP traffic to HTTPS. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/http-redirects-to-https)."
},
"service-worker": {
"score": true,
"displayValue": "",
"rawValue": true,
"name": "service-worker",
"category": "Offline",
"description": "Registers a Service Worker",
"helpText": "The service worker is the technology that enables your app to use many Progressive Web App features, such as offline, add to homescreen, and push notifications. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/registered-service-worker)."
},
"works-offline": {
"score": true,
"displayValue": "",
"rawValue": true,
"name": "works-offline",
"category": "Offline",
"description": "Responds with a 200 when offline",
"helpText": "If you're building a Progressive Web App, consider using a service worker so that your app can work offline. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/http-200-when-offline)."
},
"viewport": {
"score": true,
"displayValue": "",
"rawValue": true,
"debugString": "",
"name": "viewport",
"category": "Mobile Friendly",
"description": "Has a `<meta name=\"viewport\">` tag with `width` or `initial-scale`",
"helpText": "Add a viewport meta tag to optimize your app for mobile screens. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/has-viewport-meta-tag)."
},
"manifest-display": {
"score": true,
"displayValue": "standalone",
"rawValue": true,
"name": "manifest-display",
"category": "Manifest",
"description": "Manifest's `display` property is set",
"helpText": "Set the `display` property to specify how your app launches from the homescreen. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-has-display-set)."
},
"without-javascript": {
"score": true,
"displayValue": "",
"rawValue": true,
"name": "without-javascript",
"category": "JavaScript",
"description": "Contains some content when JavaScript is not available",
"helpText": "Your app should display some content when JavaScript is disabled, even if it's just a warning to the user that JavaScript is required to use the app. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/no-js)."
},
"first-meaningful-paint": {
"score": 96,
"displayValue": "1641.1ms",
"rawValue": 1641.1,
"optimalValue": "1,600ms",
"extendedInfo": {
"value": {
"timestamps": {
"navStart": 159686342562,
"fCP": 159687407063,
"fMP": 159687983691
},
"timings": {
"navStart": 0,
"fCP": 1064.501,
"fMP": 1641.129
}
},
"formatter": "null"
},
"name": "first-meaningful-paint",
"category": "Performance",
"description": "First meaningful paint",
"helpText": "First meaningful paint measures when the primary content of a page is visible. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/first-meaningful-paint)."
},
"speed-index-metric": {
"score": 98,
"displayValue": "1254",
"rawValue": 1254,
"optimalValue": "1,250",
"extendedInfo": {
"formatter": "speedline",
"value": {
"timings": {
"firstVisualChange": 1083,
"visuallyComplete": 2060,
"speedIndex": 1175.0218799883128,
"perceptualSpeedIndex": 1254.1865978531707
},
"timestamps": {
"firstVisualChange": 159687414448,
"visuallyComplete": 159688391448,
"speedIndex": 159687506469.88,
"perceptualSpeedIndex": 159687585634.59787
},
"frames": [
{
"timestamp": 159686331.448,
"progress": 3.447050086116485
},
{
"timestamp": 159686916.112,
"progress": 0
},
{
"timestamp": 159686945.518,
"progress": 0
},
{
"timestamp": 159687415.245,
"progress": 56.0232631685021
},
{
"timestamp": 159687800.686,
"progress": 99.79724161578513
},
{
"timestamp": 159687997.81,
"progress": 99.79724161578513
},
{
"timestamp": 159688019.189,
"progress": 99.88136057127643
},
{
"timestamp": 159688391.907,
"progress": 100
}
]
}
},
"name": "speed-index-metric",
"category": "Performance",
"description": "Perceptual Speed Index",
"helpText": "Speed Index shows how quickly the contents of a page are visibly populated. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/speed-index)."
},
"estimated-input-latency": {
"score": 100,
"displayValue": "16ms",
"rawValue": 16,
"optimalValue": "50ms",
"extendedInfo": {
"value": [
{
"percentile": 0.5,
"time": 16
},
{
"percentile": 0.75,
"time": 16
},
{
"percentile": 0.9,
"time": 16
},
{
"percentile": 0.99,
"time": 24.612220000019956
},
{
"percentile": 1,
"time": 30.41899999999896
}
],
"formatter": "null"
},
"name": "estimated-input-latency",
"category": "Performance",
"description": "Estimated Input Latency",
"helpText": "The score above is an estimate of how long your app takes to respond to user input, in milliseconds. There is a 90% probability that a user encounters this amount of latency, or less. 10% of the time a user can expect additional latency. If your score is higher than Lighthouse's target score, users may perceive your app as laggy. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/estimated-input-latency)."
},
"time-to-interactive": {
"score": 97,
"displayValue": "1655.2ms",
"rawValue": 1655.2,
"optimalValue": "5,000ms",
"extendedInfo": {
"value": {
"timings": {
"fMP": 1641.1,
"visuallyReady": 1655.248,
"timeToInteractive": 1655.248
},
"timestamps": {
"fMP": 159687983691,
"visuallyReady": 159687997810,
"timeToInteractive": 159687997810
},
"expectedLatencyAtTTI": 16.077,
"foundLatencies": [
{
"estLatency": 16.07720833316446,
"startTime": "1655.2"
}
]
},
"formatter": "null"
},
"name": "time-to-interactive",
"category": "Performance",
"description": "Time To Interactive (alpha)",
"helpText": "Time to Interactive identifies the time at which your app appears to be ready enough to interact with. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/time-to-interactive)."
},
"user-timings": {
"score": true,
"displayValue": "0",
"rawValue": true,
"extendedInfo": {
"formatter": "userTimings",
"value": []
},
"informative": true,
"name": "user-timings",
"category": "Performance",
"description": "User Timing marks and measures",
"helpText": "Consider instrumenting your app with the User Timing API to create custom, real-world measurements of key user experiences. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/user-timing)."
},
"critical-request-chains": {
"score": false,
"displayValue": "4",
"rawValue": false,
"optimalValue": 0,
"extendedInfo": {
"formatter": "criticalRequestChains",
"value": {
"11996.4003": {
"request": {
"url": "https://fast-harbor-58566.herokuapp.com/",
"startTime": 159686.347283,
"endTime": 159686.744637,
"responseReceivedTime": 159686.737349,
"transferSize": 1708
},
"children": {
"11996.4007": {
"request": {
"url": "https://fast-harbor-58566.herokuapp.com/style.css",
"startTime": 159686.752326,
"endTime": 159686.9746,
"responseReceivedTime": 159686.966073,
"transferSize": 1729
},
"children": {}
},
"11996.4004": {
"request": {
"url": "https://fonts.googleapis.com/icon?family=Material+Icons",
"startTime": 159686.751281,
"endTime": 159687.060345,
"responseReceivedTime": 159687.059359,
"transferSize": 645
},
"children": {}
},
"11996.4005": {
"request": {
"url": "https://code.getmdl.io/1.3.0/material.indigo-pink.min.css",
"startTime": 159686.75171,
"endTime": 159687.36896,
"responseReceivedTime": 159687.195006,
"transferSize": 21056
},
"children": {}
},
"11996.4017": {
"request": {
"url": "https://fast-harbor-58566.herokuapp.com/images/3.jpg",
"startTime": 159687.403893,
"endTime": 159687.968485,
"responseReceivedTime": 159687.574197,
"transferSize": 72865
},
"children": {}
}
}
}
}
},
"informative": true,
"name": "critical-request-chains",
"category": "Performance",
"description": "Critical Request Chains",
"helpText": "The Critical Request Chains below show you what resources are required for first render of this page. Improve page load by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/critical-request-chains)."
},
"manifest-exists": {
"score": true,
"displayValue": "",
"rawValue": true,
"name": "manifest-exists",
"category": "Manifest",
"description": "Manifest exists",
"helpText": "The web app manifest is the technology that enables users to add your web app to their homescreen. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-exists)."
},
"manifest-background-color": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"value": "#90A4AE",
"formatter": "null"
},
"name": "manifest-background-color",
"category": "Manifest",
"description": "Manifest contains `background_color`",
"helpText": "When your app launches from a user's homescreen, the browser uses `background_color` to paint the background of the browser while your app loads for a smooth transition experience. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-background_color)."
},
"manifest-theme-color": {
"score": true,
"displayValue": "",
"rawValue": true,
"name": "manifest-theme-color",
"category": "Manifest",
"description": "Manifest contains `theme_color`",
"helpText": "Add a `theme_color` to set the color of the browser's address bar. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-theme_color)."
},
"manifest-icons-min-192": {
"score": true,
"displayValue": "found sizes: 192x192",
"rawValue": true,
"name": "manifest-icons-min-192",
"category": "Manifest",
"description": "Manifest contains icons at least 192px",
"helpText": "A 192px icon ensures that your app's icon displays well on the homescreens of the largest mobile devices. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-192px-icon)."
},
"manifest-icons-min-144": {
"score": true,
"displayValue": "found sizes: 192x192",
"rawValue": true,
"name": "manifest-icons-min-144",
"category": "Manifest",
"description": "Manifest contains icons at least 144px"
},
"manifest-name": {
"score": true,
"displayValue": "",
"rawValue": true,
"name": "manifest-name",
"category": "Manifest",
"description": "Manifest contains `name`",
"helpText": "The `name` property identifies your app and is required. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-name)."
},
"manifest-short-name": {
"score": true,
"displayValue": "",
"rawValue": true,
"name": "manifest-short-name",
"category": "Manifest",
"description": "Manifest contains `short_name`",
"helpText": "The `short_name` property is a requirement for Add To Homescreen. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-short_name)."
},
"manifest-short-name-length": {
"score": true,
"displayValue": "",
"rawValue": true,
"name": "manifest-short-name-length",
"category": "Manifest",
"description": "Manifest's `short_name` won't be truncated when displayed on homescreen",
"helpText": "Make your app's `short_name` less than 12 characters to ensure that it's not truncated on homescreens. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-short_name-is-not-truncated)."
},
"manifest-start-url": {
"score": true,
"displayValue": "",
"rawValue": true,
"name": "manifest-start-url",
"category": "Manifest",
"description": "Manifest contains `start_url`",
"helpText": "Add a `start_url` to instruct the browser to launch a specific URL whenever your app is launched from a homescreen. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/manifest-contains-start_url)."
},
"theme-color-meta": {
"score": true,
"displayValue": "#90A4AE",
"rawValue": true,
"name": "theme-color-meta",
"category": "HTML",
"description": "Has a `<meta name=\"theme-color\">` tag"
},
"content-width": {
"score": true,
"displayValue": "",
"rawValue": true,
"debugString": "",
"name": "content-width",
"category": "Mobile Friendly",
"description": "Content is sized correctly for the viewport",
"helpText": "If the width of your app's content doesn't match the width of the viewport, your app might not be optimized for mobile screens. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/content-sized-correctly-for-viewport)."
},
"deprecations": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "urllist",
"value": []
},
"name": "deprecations",
"category": "Deprecations",
"description": "Avoids deprecated APIs",
"helpText": "Deprecated APIs will eventually be removed from the browser. [Learn more](https://www.chromestatus.com/features#deprecated)."
},
"aria-allowed-attr": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "accessibility"
},
"name": "aria-allowed-attr",
"category": "Accessibility",
"description": "Element aria-* attributes are allowed for this role",
"helpText": "Each ARIA `role` supports a specific subset of `aria-*` attributes. Mismatching these invalidates the `aria-*` attributes. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/aria-allowed-attributes)."
},
"aria-required-attr": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "accessibility"
},
"name": "aria-required-attr",
"category": "Accessibility",
"description": "Elements with ARIA roles have the required aria-* attributes",
"helpText": "Some ARIA roles have required attributes that describe the state of the element to screen readers. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/required-aria-attributes)."
},
"aria-valid-attr-value": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "accessibility"
},
"name": "aria-valid-attr-value",
"category": "Accessibility",
"description": "Element aria-* attributes have valid values",
"helpText": "Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid values. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/valid-aria-values)."
},
"aria-valid-attr": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "accessibility"
},
"name": "aria-valid-attr",
"category": "Accessibility",
"description": "Element aria-* attributes are valid and not misspelled or non-existent.",
"helpText": "Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid names. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/valid-aria-attributes)."
},
"color-contrast": {
"score": false,
"displayValue": "",
"rawValue": false,
"extendedInfo": {
"formatter": "accessibility",
"value": {
"description": "Ensures the contrast between foreground and background colors meets WCAG 2 AA contrast ratio thresholds",
"help": "Elements must have sufficient color contrast",
"helpUrl": "https://dequeuniversity.com/rules/axe/2.1/color-contrast?application=axeAPI",
"id": "color-contrast",
"impact": "critical",
"nodes": [
{
"all": [],
"any": [
{
"data": {
"bgColor": "#ffffff",
"contrastRatio": "4.35",
"fgColor": "#e91e63",
"fontSize": "10.5pt",
"fontWeight": "normal"
},
"id": "color-contrast",
"impact": "critical",
"message": "Element has insufficient color contrast of 4.35 (foreground color: #e91e63, background color: #ffffff, font size: 10.5pt, font weight: normal)",
"relatedNodes": []
}
],
"failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.35 (foreground color: #e91e63, background color: #ffffff, font size: 10.5pt, font weight: normal)",
"html": "<div class=\"footer\">\n Made with <span class=\"heart\">❤︎</span> by Lee\n </div>",
"impact": "critical",
"none": [],
"target": [
"body > .mdl-layout__container > .mdl-layout.mdl-js-layout.mdl-layout--fixed-header.has-drawer.is-small-screen.is-upgraded > .footer"
]
},
{
"all": [],
"any": [
{
"data": {
"bgColor": "#ffffff",
"contrastRatio": "4.35",
"fgColor": "#e91e63",
"fontSize": "10.5pt",
"fontWeight": "normal"
},
"id": "color-contrast",
"impact": "critical",
"message": "Element has insufficient color contrast of 4.35 (foreground color: #e91e63, background color: #ffffff, font size: 10.5pt, font weight: normal)",
"relatedNodes": []
}
],
"failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.35 (foreground color: #e91e63, background color: #ffffff, font size: 10.5pt, font weight: normal)",
"html": "<span class=\"heart\">❤︎</span>",
"impact": "critical",
"none": [],
"target": [
"body > .mdl-layout__container > .mdl-layout.mdl-js-layout.mdl-layout--fixed-header.has-drawer.is-small-screen.is-upgraded > .footer > .heart"
]
}
],
"tags": [
"wcag2aa",
"wcag143"
]
}
},
"name": "color-contrast",
"category": "Accessibility",
"description": "Background and foreground colors have a sufficient contrast ratio",
"helpText": "Low-contrast text is difficult or impossible for many users to read. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/contrast-ratio)."
},
"image-alt": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "accessibility"
},
"name": "image-alt",
"category": "Accessibility",
"description": "Every image element has an alt attribute",
"helpText": "Screen reader users rely on `alt` text to provide descriptions of images. It's also used as fallback content when an image fails to load. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/alt-attribute)."
},
"label": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "accessibility"
},
"name": "label",
"category": "Accessibility",
"description": "Every form element has a label",
"helpText": "Labels ensure that form controls are announced properly by assistive technologies, like screen readers. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/form-labels)."
},
"tabindex": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "accessibility"
},
"name": "tabindex",
"category": "Accessibility",
"description": "No element has a `tabindex` attribute greater than 0",
"helpText": "A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/tabindex)."
},
"total-byte-weight": {
"score": 100,
"displayValue": "Total size was 206 KB",
"rawValue": 210773,
"optimalValue": "1,600 KB",
"extendedInfo": {
"formatter": "table",
"value": {
"results": [
{
"url": "…images/3.jpg",
"totalBytes": 72865,
"totalKb": "71 KB",
"totalMs": "350ms"
},
{
"url": "…1.3.0/material.min.js",
"totalBytes": 62782,
"totalKb": "61 KB",
"totalMs": "300ms"
},
{
"url": "…v21/2fcrYFNaTjcS6g4U3t-Y5UEw0lE80llgEseQY3FEmqw.woff2",
"totalBytes": 47842,
"totalKb": "47 KB",
"totalMs": "230ms"
},
{
"url": "…1.3.0/material.indigo-pink.min.css",
"totalBytes": 21056,
"totalKb": "21 KB",
"totalMs": "100ms"
},
{
"url": "…js/service-worker-registration.js",
"totalBytes": 1735,
"totalKb": "2 KB",
"totalMs": "10ms"
},
{
"url": "/style.css",
"totalBytes": 1729,
"totalKb": "2 KB",
"totalMs": "10ms"
},
{
"url": "/",
"totalBytes": 1708,
"totalKb": "2 KB",
"totalMs": "10ms"
},
{
"url": "/icon?family=Material+Icons",
"totalBytes": 645,
"totalKb": "1 KB",
"totalMs": "0ms"
},
{
"url": "…js/main.js",
"totalBytes": 411,
"totalKb": "0 KB",
"totalMs": "0ms"
}
],
"tableHeadings": {
"url": "URL",
"totalKb": "Total Size",
"totalMs": "Transfer Time"
}
}
},
"informative": true,
"name": "total-byte-weight",
"category": "Network",
"description": "Avoids enormous network payloads",
"helpText": "Network transfer size [costs users real dollars](https://whatdoesmysitecost.com/) and is [highly correlated](http://httparchive.org/interesting.php#onLoad) with long load times. Try to find ways to reduce the size of required files."
},
"unused-css-rules": {
"score": false,
"displayValue": "Potential savings of 21 KB (~100ms)",
"rawValue": false,
"extendedInfo": {
"formatter": "table",
"value": {
"results": [
{
"url": "…1.3.0/material.indigo-pink.min.css",
"numUnused": 1290,
"wastedBytes": 20361,
"wastedPercent": 96.7016491754123,
"totalBytes": 21056,
"wastedKb": "20 KB",
"wastedMs": "100ms",
"totalKb": "21 KB",
"totalMs": "100ms",
"potentialSavings": "20 KB _97%_"
},
{
"url": "/style.css",
"numUnused": 46,
"wastedBytes": 1473,
"wastedPercent": 85.18518518518519,
"totalBytes": 1729,
"wastedKb": "1 KB",
"wastedMs": "10ms",
"totalKb": "2 KB",
"totalMs": "10ms",
"potentialSavings": "1 KB _85%_"
}
],
"tableHeadings": {
"url": "URL",
"numUnused": "Unused Rules",
"totalKb": "Original",
"potentialSavings": "Potential Savings"
}
}
},
"informative": true,
"name": "unused-css-rules",
"category": "CSS",
"description": "Unused CSS rules",
"helpText": "Remove unused rules from stylesheets to reduce unnecessary bytes consumed by network activity. [Learn more](https://developers.google.com/speed/docs/insights/OptimizeCSSDelivery)"
},
"uses-optimized-images": {
"score": true,
"displayValue": "Potential savings of 51 KB (~250ms)",
"rawValue": true,
"extendedInfo": {
"formatter": "table",
"value": {
"results": [
{
"url": "…images/3.jpg",
"preview": {
"url": "https://fast-harbor-58566.herokuapp.com/images/3.jpg",
"mimeType": "image/jpeg"
},
"totalBytes": 72481,
"wastedBytes": 51713,
"webpSavings": "51 KB _71%_",
"jpegSavings": "19 KB _27%_",
"wastedKb": "51 KB",
"wastedMs": "250ms",
"totalKb": "71 KB",
"totalMs": "350ms",
"potentialSavings": "51 KB _0%_"
}
],
"tableHeadings": {
"preview": "",
"url": "URL",
"totalKb": "Original",
"webpSavings": "WebP Savings",
"jpegSavings": "JPEG Savings"
}
}
},
"informative": true,
"name": "uses-optimized-images",
"category": "Images",
"description": "Unoptimized images",
"helpText": "Images should be optimized to save network bytes. The following images could have smaller file sizes when compressed with [WebP](https://developers.google.com/speed/webp/) or JPEG at 80 quality. [Learn more about image optimization](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/image-optimization)."
},
"uses-responsive-images": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "table",
"value": {
"results": [],
"tableHeadings": {
"preview": "",
"url": "URL",
"totalKb": "Original",
"potentialSavings": "Potential Savings"
}
}
},
"informative": true,
"name": "uses-responsive-images",
"category": "Images",
"description": "Oversized Images",
"helpText": "Image sizes served should be based on the device display size to save network bytes. Learn more about [responsive images](https://developers.google.com/web/fundamentals/design-and-ui/media/images) and [client hints](https://developers.google.com/web/updates/2015/09/automating-resource-selection-with-client-hints)."
},
"appcache-manifest": {
"score": true,
"displayValue": "",
"rawValue": true,
"debugString": "",
"name": "appcache-manifest",
"category": "Offline",
"description": "Avoids Application Cache",
"helpText": "Application Cache has been [deprecated](https://html.spec.whatwg.org/multipage/browsers.html#offline) by [Service Workers](https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API/Using_Service_Workers). Consider implementing an offline solution using the [Cache Storage API](https://developer.mozilla.org/en-US/docs/Web/API/Cache)."
},
"dom-size": {
"score": 100,
"displayValue": "54 nodes",
"rawValue": 54,
"optimalValue": "1,500 nodes",
"extendedInfo": {
"formatter": "card",
"value": [
{
"title": "Total DOM Nodes",
"value": "54",
"target": "< 1,500 nodes"
},
{
"title": "DOM Depth",
"value": "8",
"snippet": "html.mdl-js >\n body >\n div.mdl-layout__container >\n div.mdl-layout.mdl-js-layout.mdl-layout--fixed-header.has-drawer.is-small-screen.is-upgraded >\n div.mdl-grid.content-grid.vs.mdl-grid.center-items >\n div.card-welcome.card-div.mdl-card.mdl-shadow--4dp >\n div.mdl-card__title.center >\n h2.mdl-card__title-text.center.card-title",
"target": "< 32"
},
{
"title": "Maximum Children",
"value": "26",
"snippet": "Element with most children:\nhead",
"target": "< 60 nodes"
}
]
},
"name": "dom-size",
"category": "Performance",
"description": "Avoids an excessive DOM size",
"helpText": "Browser engineers recommend pages contain fewer than ~1,500 DOM nodes. The sweet spot is a tree depth < 32 elements and fewer than 60 children/parent element. A large DOM can increase memory, cause longer [style calculations](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations), and produce costly [layout reflows](https://developers.google.com/speed/articles/reflow). [Learn more](https://developers.google.com/web/fundamentals/performance/rendering/)."
},
"external-anchors-use-rel-noopener": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "urllist",
"value": []
},
"name": "external-anchors-use-rel-noopener",
"category": "Performance",
"description": "Opens external anchors using rel=\"noopener\"",
"helpText": "Open new tabs using `rel=\"noopener\"` to improve performance and prevent security vulnerabilities. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/noopener)."
},
"geolocation-on-start": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "urllist",
"value": []
},
"name": "geolocation-on-start",
"category": "UX",
"description": "Avoids requesting the geolocation permission on page load",
"helpText": "Users are mistrustful of or confused by sites that request their location without context. Consider tying the request to user gestures instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/geolocation-on-load)."
},
"link-blocking-first-paint": {
"score": false,
"displayValue": "3 resources delayed first paint by 89ms",
"rawValue": false,
"extendedInfo": {
"formatter": "table",
"value": {
"results": [
{
"url": "/icon",
"totalKb": "0 KB",
"totalMs": "38ms"
},
{
"url": "…1.3.0/material.indigo-pink.min.css",
"totalKb": "20 KB",
"totalMs": "89ms"
},
{
"url": "/style.css",
"totalKb": "2 KB",
"totalMs": "85ms"
}
],
"tableHeadings": {
"url": "URL",
"totalKb": "Size (KB)",
"totalMs": "Delayed Paint By (ms)"
}
}
},
"informative": true,
"name": "link-blocking-first-paint",
"category": "Performance",
"description": "Render-blocking Stylesheets",
"helpText": "Link elements are blocking the first paint of your page. Consider inlining critical links and deferring non-critical ones. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/blocking-resources)."
},
"no-console-time": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "table",
"value": {
"results": [],
"tableHeadings": {
"url": "URL",
"lineCol": "Line/Col",
"isEval": "Eval'd?"
}
}
},
"name": "no-console-time",
"category": "JavaScript",
"description": "Avoids `console.time()` in its own scripts",
"helpText": "Consider using `performance.mark()` and `performance.measure()` from the User Timing API instead. They provide high-precision timestamps, independent of the system clock, and are integrated in the Chrome DevTools Timeline. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/console-time)."
},
"no-datenow": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "table",
"value": {
"results": [],
"tableHeadings": {
"url": "URL",
"lineCol": "Line/Col",
"isEval": "Eval'd?"
}
}
},
"name": "no-datenow",
"category": "JavaScript",
"description": "Avoids `Date.now()` in its own scripts",
"helpText": "Consider using `performance.now()` from the User Timing API instead. It provides high-precision timestamps, independent of the system clock. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/date-now)."
},
"no-document-write": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "urllist",
"value": []
},
"name": "no-document-write",
"category": "Performance",
"description": "Avoids `document.write()`",
"helpText": "For users on slow connections, external scripts dynamically injected via `document.write()` can delay page load by tens of seconds. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/document-write)."
},
"no-mutation-events": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "table",
"value": {
"results": [],
"tableHeadings": {
"url": "URL",
"lineCol": "Line/Col",
"type": "Event",
"code": "Snippet"
}
}
},
"name": "no-mutation-events",
"category": "JavaScript",
"description": "Avoids Mutation Events in its own scripts",
"helpText": "Mutation Events are deprecated and harm performance. Consider using Mutation Observers instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/mutation-events)."
},
"no-old-flexbox": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "table",
"value": {
"results": [],
"tableHeadings": {
"url": "URL",
"startLine": "Line in the stylesheet / <style>",
"location": "Column start/end",
"pre": "Snippet"
}
}
},
"name": "no-old-flexbox",
"category": "CSS",
"description": "Avoids old CSS flexbox",
"helpText": "The 2009 spec of Flexbox is deprecated and is 2.3x slower than the latest spec. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/old-flexbox)."
},
"no-websql": {
"score": true,
"displayValue": "",
"rawValue": true,
"debugString": "",
"name": "no-websql",
"category": "Offline",
"description": "Avoids WebSQL DB",
"helpText": "Web SQL is deprecated. Consider using IndexedDB instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/web-sql)."
},
"notification-on-start": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "urllist",
"value": []
},
"name": "notification-on-start",
"category": "UX",
"description": "Avoids requesting the notification permission on page load",
"helpText": "Users are mistrustful of or confused by sites that request to send notifications without context. Consider tying the request to user gestures instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/notifications-on-load)."
},
"script-blocking-first-paint": {
"score": true,
"displayValue": "",
"rawValue": true,
"extendedInfo": {
"formatter": "table",
"value": {
"results": [],
"tableHeadings": {
"url": "URL",
"totalKb": "Size (KB)",
"totalMs": "Delayed Paint By (ms)"
}