├── .gitignore ├── .textlintrc ├── .travis.yml ├── .travis └── github_deploy_key.enc ├── LICENSE ├── README.md ├── _layouts └── website │ └── page.html ├── book.json ├── package.json ├── prh.yml ├── resources └── fonts │ └── IPAexfont00301 │ ├── IPA_Font_License_Agreement_v1.0.txt │ ├── Readme_IPAexfont00301.txt │ └── ipaexm.ttf ├── src ├── README.md ├── SUMMARY.md ├── startup │ ├── README.md │ ├── img │ │ └── meta-issue.png │ ├── module-field │ │ ├── README.md │ │ └── img │ │ │ ├── es-module-app.png │ │ │ ├── issue.png │ │ │ └── module-graph.png │ ├── reduce-bundle │ │ ├── README.md │ │ └── img │ │ │ └── before-bundle.png │ ├── reduce-size │ │ ├── README.md │ │ └── img │ │ │ ├── bundlephobia.png │ │ │ ├── compare.png │ │ │ ├── split-broadcaster-tool.png │ │ │ ├── stats-graph.png │ │ │ └── webpack-bundle-analyzer.png │ └── stats │ │ ├── README.md │ │ └── img │ │ ├── datastudio-1.png │ │ └── datastudio-2.png └── watching │ ├── README.md │ ├── fix-fullscreen │ ├── README.md │ └── img │ │ ├── 21105CC07A31BA04E2044C63099B7053.jpg │ │ ├── 21D3A5DE5DBD621293EBF975E5FA6FD3.jpg │ │ ├── 3D9888CA9CA177C2C64CFE97D656562B.jpg │ │ ├── 599E19012EC3C07936FC7C257280866D.jpg │ │ ├── 670C04A3BC8562ED3E4857066278452B.jpg │ │ ├── C69F52FA0F7484333953E9B050518C0D.jpg │ │ ├── E8D3EAC2C8C6B5407E7AD91002548B5F.jpg │ │ ├── fullscreen.mp4 │ │ ├── pr-fittingrea.png │ │ ├── pr-resize.png │ │ └── self-time.png │ ├── fix-input │ ├── README.md │ └── img │ │ ├── after-comment-input.mp4 │ │ ├── before-comment-input.mp4 │ │ ├── comment-input-perf-log.png │ │ ├── comment-input.png │ │ ├── input-performance-p.pdf │ │ ├── live-input.mp4 │ │ └── video-input.mp4 │ ├── fix-interval │ ├── README.md │ └── img │ │ ├── found-timer.png │ │ └── pr-interaction.png │ ├── fix-library │ ├── README.md │ └── img │ │ ├── hls-caption.png │ │ ├── hls-js-fragments-count.png │ │ ├── hls-js_checkAppendedParsed.png │ │ └── sjsp-profile.png │ ├── fix-list │ ├── README.md │ ├── img │ │ ├── 4148ce7a-d532-11e7-9960-695a19097514.png │ │ ├── 479d2672-d532-11e7-9de9-d7f1f914164d.png │ │ ├── 4e20af82-d532-11e7-9ff7-5ddee47a180d.png │ │ ├── 59ac6986-d532-11e7-8d10-f964f9a08fbc.png │ │ ├── 60b278ba-d532-11e7-980e-d308561c5a91.png │ │ ├── 6523912c-d532-11e7-8f40-e8caf4747a86.png │ │ ├── RowComponent.png │ │ ├── datagrid-highlight.mp4 │ │ ├── datagrid-highlight.png │ │ ├── datagrid-story.png │ │ ├── list.png │ │ ├── perf-add-comment.png │ │ ├── pr-comment-throttle.png │ │ ├── pr-fittingrea.png │ │ └── pr-list.png │ ├── shouldComponentUpdate.md │ └── throttling.md │ ├── fix-mousemove │ ├── README.md │ └── img │ │ ├── after-mouse-hover-profile.png │ │ ├── after-mouse-hover.mp4 │ │ ├── before-mouse-move-profile.png │ │ ├── before-mousehover.mp4 │ │ ├── mouse-move-highlight.mp4 │ │ └── pr-PureRenderingOptimizedComponent.png │ ├── fix-new-function │ └── README.md │ ├── fix-reflow-componentDidUpdate │ ├── README.md │ └── img │ │ ├── pr-getVideoDimensions.png │ │ └── relayout-componentDidUpdate.png │ ├── fix │ └── README.md │ ├── how-to-measure │ ├── README.md │ └── img │ │ └── timeline.png │ ├── img │ ├── meta-issue.png │ └── watch-page.png │ ├── metrics │ ├── README.md │ └── img │ │ ├── example.png │ │ └── perf-view.png │ ├── no-perf │ └── README.md │ └── tradeoff │ └── README.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | _book 2 | -------------------------------------------------------------------------------- /.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/.textlintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/github_deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/.travis/github_deploy_key.enc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/README.md -------------------------------------------------------------------------------- /_layouts/website/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/_layouts/website/page.html -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/book.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/package.json -------------------------------------------------------------------------------- /prh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/prh.yml -------------------------------------------------------------------------------- /resources/fonts/IPAexfont00301/IPA_Font_License_Agreement_v1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/resources/fonts/IPAexfont00301/IPA_Font_License_Agreement_v1.0.txt -------------------------------------------------------------------------------- /resources/fonts/IPAexfont00301/Readme_IPAexfont00301.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/resources/fonts/IPAexfont00301/Readme_IPAexfont00301.txt -------------------------------------------------------------------------------- /resources/fonts/IPAexfont00301/ipaexm.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/resources/fonts/IPAexfont00301/ipaexm.ttf -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/README.md -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/startup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/README.md -------------------------------------------------------------------------------- /src/startup/img/meta-issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/img/meta-issue.png -------------------------------------------------------------------------------- /src/startup/module-field/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/module-field/README.md -------------------------------------------------------------------------------- /src/startup/module-field/img/es-module-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/module-field/img/es-module-app.png -------------------------------------------------------------------------------- /src/startup/module-field/img/issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/module-field/img/issue.png -------------------------------------------------------------------------------- /src/startup/module-field/img/module-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/module-field/img/module-graph.png -------------------------------------------------------------------------------- /src/startup/reduce-bundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/reduce-bundle/README.md -------------------------------------------------------------------------------- /src/startup/reduce-bundle/img/before-bundle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/reduce-bundle/img/before-bundle.png -------------------------------------------------------------------------------- /src/startup/reduce-size/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/reduce-size/README.md -------------------------------------------------------------------------------- /src/startup/reduce-size/img/bundlephobia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/reduce-size/img/bundlephobia.png -------------------------------------------------------------------------------- /src/startup/reduce-size/img/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/reduce-size/img/compare.png -------------------------------------------------------------------------------- /src/startup/reduce-size/img/split-broadcaster-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/reduce-size/img/split-broadcaster-tool.png -------------------------------------------------------------------------------- /src/startup/reduce-size/img/stats-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/reduce-size/img/stats-graph.png -------------------------------------------------------------------------------- /src/startup/reduce-size/img/webpack-bundle-analyzer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/reduce-size/img/webpack-bundle-analyzer.png -------------------------------------------------------------------------------- /src/startup/stats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/stats/README.md -------------------------------------------------------------------------------- /src/startup/stats/img/datastudio-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/stats/img/datastudio-1.png -------------------------------------------------------------------------------- /src/startup/stats/img/datastudio-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/startup/stats/img/datastudio-2.png -------------------------------------------------------------------------------- /src/watching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/README.md -------------------------------------------------------------------------------- /src/watching/fix-fullscreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-fullscreen/README.md -------------------------------------------------------------------------------- /src/watching/fix-fullscreen/img/21105CC07A31BA04E2044C63099B7053.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-fullscreen/img/21105CC07A31BA04E2044C63099B7053.jpg -------------------------------------------------------------------------------- /src/watching/fix-fullscreen/img/21D3A5DE5DBD621293EBF975E5FA6FD3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-fullscreen/img/21D3A5DE5DBD621293EBF975E5FA6FD3.jpg -------------------------------------------------------------------------------- /src/watching/fix-fullscreen/img/3D9888CA9CA177C2C64CFE97D656562B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-fullscreen/img/3D9888CA9CA177C2C64CFE97D656562B.jpg -------------------------------------------------------------------------------- /src/watching/fix-fullscreen/img/599E19012EC3C07936FC7C257280866D.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-fullscreen/img/599E19012EC3C07936FC7C257280866D.jpg -------------------------------------------------------------------------------- /src/watching/fix-fullscreen/img/670C04A3BC8562ED3E4857066278452B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-fullscreen/img/670C04A3BC8562ED3E4857066278452B.jpg -------------------------------------------------------------------------------- /src/watching/fix-fullscreen/img/C69F52FA0F7484333953E9B050518C0D.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-fullscreen/img/C69F52FA0F7484333953E9B050518C0D.jpg -------------------------------------------------------------------------------- /src/watching/fix-fullscreen/img/E8D3EAC2C8C6B5407E7AD91002548B5F.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-fullscreen/img/E8D3EAC2C8C6B5407E7AD91002548B5F.jpg -------------------------------------------------------------------------------- /src/watching/fix-fullscreen/img/fullscreen.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-fullscreen/img/fullscreen.mp4 -------------------------------------------------------------------------------- /src/watching/fix-fullscreen/img/pr-fittingrea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-fullscreen/img/pr-fittingrea.png -------------------------------------------------------------------------------- /src/watching/fix-fullscreen/img/pr-resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-fullscreen/img/pr-resize.png -------------------------------------------------------------------------------- /src/watching/fix-fullscreen/img/self-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-fullscreen/img/self-time.png -------------------------------------------------------------------------------- /src/watching/fix-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-input/README.md -------------------------------------------------------------------------------- /src/watching/fix-input/img/after-comment-input.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-input/img/after-comment-input.mp4 -------------------------------------------------------------------------------- /src/watching/fix-input/img/before-comment-input.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-input/img/before-comment-input.mp4 -------------------------------------------------------------------------------- /src/watching/fix-input/img/comment-input-perf-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-input/img/comment-input-perf-log.png -------------------------------------------------------------------------------- /src/watching/fix-input/img/comment-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-input/img/comment-input.png -------------------------------------------------------------------------------- /src/watching/fix-input/img/input-performance-p.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-input/img/input-performance-p.pdf -------------------------------------------------------------------------------- /src/watching/fix-input/img/live-input.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-input/img/live-input.mp4 -------------------------------------------------------------------------------- /src/watching/fix-input/img/video-input.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-input/img/video-input.mp4 -------------------------------------------------------------------------------- /src/watching/fix-interval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-interval/README.md -------------------------------------------------------------------------------- /src/watching/fix-interval/img/found-timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-interval/img/found-timer.png -------------------------------------------------------------------------------- /src/watching/fix-interval/img/pr-interaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-interval/img/pr-interaction.png -------------------------------------------------------------------------------- /src/watching/fix-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-library/README.md -------------------------------------------------------------------------------- /src/watching/fix-library/img/hls-caption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-library/img/hls-caption.png -------------------------------------------------------------------------------- /src/watching/fix-library/img/hls-js-fragments-count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-library/img/hls-js-fragments-count.png -------------------------------------------------------------------------------- /src/watching/fix-library/img/hls-js_checkAppendedParsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-library/img/hls-js_checkAppendedParsed.png -------------------------------------------------------------------------------- /src/watching/fix-library/img/sjsp-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-library/img/sjsp-profile.png -------------------------------------------------------------------------------- /src/watching/fix-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/README.md -------------------------------------------------------------------------------- /src/watching/fix-list/img/4148ce7a-d532-11e7-9960-695a19097514.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/img/4148ce7a-d532-11e7-9960-695a19097514.png -------------------------------------------------------------------------------- /src/watching/fix-list/img/479d2672-d532-11e7-9de9-d7f1f914164d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/img/479d2672-d532-11e7-9de9-d7f1f914164d.png -------------------------------------------------------------------------------- /src/watching/fix-list/img/4e20af82-d532-11e7-9ff7-5ddee47a180d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/img/4e20af82-d532-11e7-9ff7-5ddee47a180d.png -------------------------------------------------------------------------------- /src/watching/fix-list/img/59ac6986-d532-11e7-8d10-f964f9a08fbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/img/59ac6986-d532-11e7-8d10-f964f9a08fbc.png -------------------------------------------------------------------------------- /src/watching/fix-list/img/60b278ba-d532-11e7-980e-d308561c5a91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/img/60b278ba-d532-11e7-980e-d308561c5a91.png -------------------------------------------------------------------------------- /src/watching/fix-list/img/6523912c-d532-11e7-8f40-e8caf4747a86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/img/6523912c-d532-11e7-8f40-e8caf4747a86.png -------------------------------------------------------------------------------- /src/watching/fix-list/img/RowComponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/img/RowComponent.png -------------------------------------------------------------------------------- /src/watching/fix-list/img/datagrid-highlight.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/img/datagrid-highlight.mp4 -------------------------------------------------------------------------------- /src/watching/fix-list/img/datagrid-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/img/datagrid-highlight.png -------------------------------------------------------------------------------- /src/watching/fix-list/img/datagrid-story.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/img/datagrid-story.png -------------------------------------------------------------------------------- /src/watching/fix-list/img/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/img/list.png -------------------------------------------------------------------------------- /src/watching/fix-list/img/perf-add-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/img/perf-add-comment.png -------------------------------------------------------------------------------- /src/watching/fix-list/img/pr-comment-throttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/img/pr-comment-throttle.png -------------------------------------------------------------------------------- /src/watching/fix-list/img/pr-fittingrea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/img/pr-fittingrea.png -------------------------------------------------------------------------------- /src/watching/fix-list/img/pr-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/img/pr-list.png -------------------------------------------------------------------------------- /src/watching/fix-list/shouldComponentUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/shouldComponentUpdate.md -------------------------------------------------------------------------------- /src/watching/fix-list/throttling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-list/throttling.md -------------------------------------------------------------------------------- /src/watching/fix-mousemove/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-mousemove/README.md -------------------------------------------------------------------------------- /src/watching/fix-mousemove/img/after-mouse-hover-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-mousemove/img/after-mouse-hover-profile.png -------------------------------------------------------------------------------- /src/watching/fix-mousemove/img/after-mouse-hover.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-mousemove/img/after-mouse-hover.mp4 -------------------------------------------------------------------------------- /src/watching/fix-mousemove/img/before-mouse-move-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-mousemove/img/before-mouse-move-profile.png -------------------------------------------------------------------------------- /src/watching/fix-mousemove/img/before-mousehover.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-mousemove/img/before-mousehover.mp4 -------------------------------------------------------------------------------- /src/watching/fix-mousemove/img/mouse-move-highlight.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-mousemove/img/mouse-move-highlight.mp4 -------------------------------------------------------------------------------- /src/watching/fix-mousemove/img/pr-PureRenderingOptimizedComponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-mousemove/img/pr-PureRenderingOptimizedComponent.png -------------------------------------------------------------------------------- /src/watching/fix-new-function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-new-function/README.md -------------------------------------------------------------------------------- /src/watching/fix-reflow-componentDidUpdate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-reflow-componentDidUpdate/README.md -------------------------------------------------------------------------------- /src/watching/fix-reflow-componentDidUpdate/img/pr-getVideoDimensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-reflow-componentDidUpdate/img/pr-getVideoDimensions.png -------------------------------------------------------------------------------- /src/watching/fix-reflow-componentDidUpdate/img/relayout-componentDidUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix-reflow-componentDidUpdate/img/relayout-componentDidUpdate.png -------------------------------------------------------------------------------- /src/watching/fix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/fix/README.md -------------------------------------------------------------------------------- /src/watching/how-to-measure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/how-to-measure/README.md -------------------------------------------------------------------------------- /src/watching/how-to-measure/img/timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/how-to-measure/img/timeline.png -------------------------------------------------------------------------------- /src/watching/img/meta-issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/img/meta-issue.png -------------------------------------------------------------------------------- /src/watching/img/watch-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/img/watch-page.png -------------------------------------------------------------------------------- /src/watching/metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/metrics/README.md -------------------------------------------------------------------------------- /src/watching/metrics/img/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/metrics/img/example.png -------------------------------------------------------------------------------- /src/watching/metrics/img/perf-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/metrics/img/perf-view.png -------------------------------------------------------------------------------- /src/watching/no-perf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/no-perf/README.md -------------------------------------------------------------------------------- /src/watching/tradeoff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/src/watching/tradeoff/README.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwango-js/performance-handbook/HEAD/yarn.lock --------------------------------------------------------------------------------