├── .gitignore ├── HTTPS性能影响 ├── TLS原理.md └── 性能影响.md ├── LICENSE ├── Node性能优化 ├── Node中的多进程.md ├── 多进程架构.md └── 异步IO.md ├── README.md ├── assets ├── 01-02-perf_graph10-768x633.png ├── 02-05-jit06-768x565.png ├── 02-06-jit09-768x560.png ├── 02-07-jit11-768x555.png ├── 02-08-decision_tree01-768x394.png ├── 02-09-jit_loop02-768x496.png ├── 02-10-jit_loop02-768x488.png ├── 20160503104416135 ├── 2143330_1307526500FF6O.gif ├── 2143330_1307526506ZEHQ.png ├── 3061105775-56fde6dc11135_articlex.png ├── 561179-20160403173213113-100043029.png ├── 561179-20160403181549941-1360231582.png ├── HTTPCachtType.png ├── Scavenge_gc.jpg ├── TLS握手时延.png ├── asyncio.png ├── blockingio.png ├── ca232a82-b4dc-11e6-88b8-bc4a8704c543.png ├── cdn_addCDN.png ├── cdn_traditional.png ├── chrometasks.png ├── cluster_net.png ├── con1.png ├── con2.png ├── con3.png ├── cpuio.png ├── cssom-construction.png ├── dns.png ├── dns_lookup.jpg ├── full-process.png ├── hand1.png ├── hand2.png ├── hand3.png ├── hand_SUm.png ├── http-cache-decision-tree.png ├── http-cache-hierarchy.png ├── http-luoxia.png ├── image011.png ├── image019.png ├── layers.png ├── mem1.png ├── mem2.png ├── mem3.png ├── memory1.png ├── memory2.png ├── memory3.jpeg ├── memory3.png ├── memory4.png ├── nat.png ├── node_gc.jpg ├── process1.png ├── react-inter.png ├── readio.png ├── render-tree-construction.png ├── routers.png ├── screenhot1.png ├── screenhot10.png ├── screenhot11.png ├── screenhot12.png ├── screenhot13.png ├── screenhot14.png ├── screenhot15.png ├── screenhot16.png ├── screenhot2.png ├── screenhot3.png ├── screenhot4.png ├── screenhot5.png ├── screenhot6.png ├── screenhot7.png ├── screenhot8.png ├── screenhot9.png ├── selectio.png ├── sweeping与compacting.jpg ├── tcp1.png ├── tcp_hand.jpg ├── tcp_pdu.png ├── tcpbye.jpg ├── timing-overview.png ├── webkitflow.png ├── webpack-intro.png ├── 堆内外内存分配.jpg ├── 密钥交换.png ├── 屏幕快照 2017-12-03 下午10.05.11.png └── 延迟因素.png ├── 即时应用与P2P ├── UDP协议.md └── WebRTC.md ├── 响应式编程 ├── PubSub方式.md ├── Vue方式.md └── 脏检查机制.md ├── 带宽与延迟 ├── README.md ├── TCP协议细节.md ├── 从输入URL开始.md └── 带宽与延迟.md ├── 缓存机制 ├── README.md ├── 优化.md ├── 浏览器行为.md └── 首部字段.md ├── 网页渲染原理 ├── README.md ├── repaint与reflow.md ├── 浏览器优化策略.md ├── 渲染过程.md └── 资源加载顺序.md ├── 虚拟DOM ├── React基础.md └── 实现.md ├── 静态资源 ├── CDN.md ├── README.md ├── Webpack.md ├── 图像优化.md └── 资源压缩.md └── 高性能JavaScript ├── GC机制.md ├── README.md ├── V8与JIT.md └── 内存管理.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /HTTPS性能影响/TLS原理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/HTTPS性能影响/TLS原理.md -------------------------------------------------------------------------------- /HTTPS性能影响/性能影响.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/HTTPS性能影响/性能影响.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/LICENSE -------------------------------------------------------------------------------- /Node性能优化/Node中的多进程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/Node性能优化/Node中的多进程.md -------------------------------------------------------------------------------- /Node性能优化/多进程架构.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/Node性能优化/多进程架构.md -------------------------------------------------------------------------------- /Node性能优化/异步IO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/Node性能优化/异步IO.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/README.md -------------------------------------------------------------------------------- /assets/01-02-perf_graph10-768x633.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/01-02-perf_graph10-768x633.png -------------------------------------------------------------------------------- /assets/02-05-jit06-768x565.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/02-05-jit06-768x565.png -------------------------------------------------------------------------------- /assets/02-06-jit09-768x560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/02-06-jit09-768x560.png -------------------------------------------------------------------------------- /assets/02-07-jit11-768x555.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/02-07-jit11-768x555.png -------------------------------------------------------------------------------- /assets/02-08-decision_tree01-768x394.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/02-08-decision_tree01-768x394.png -------------------------------------------------------------------------------- /assets/02-09-jit_loop02-768x496.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/02-09-jit_loop02-768x496.png -------------------------------------------------------------------------------- /assets/02-10-jit_loop02-768x488.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/02-10-jit_loop02-768x488.png -------------------------------------------------------------------------------- /assets/20160503104416135: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/20160503104416135 -------------------------------------------------------------------------------- /assets/2143330_1307526500FF6O.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/2143330_1307526500FF6O.gif -------------------------------------------------------------------------------- /assets/2143330_1307526506ZEHQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/2143330_1307526506ZEHQ.png -------------------------------------------------------------------------------- /assets/3061105775-56fde6dc11135_articlex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/3061105775-56fde6dc11135_articlex.png -------------------------------------------------------------------------------- /assets/561179-20160403173213113-100043029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/561179-20160403173213113-100043029.png -------------------------------------------------------------------------------- /assets/561179-20160403181549941-1360231582.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/561179-20160403181549941-1360231582.png -------------------------------------------------------------------------------- /assets/HTTPCachtType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/HTTPCachtType.png -------------------------------------------------------------------------------- /assets/Scavenge_gc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/Scavenge_gc.jpg -------------------------------------------------------------------------------- /assets/TLS握手时延.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/TLS握手时延.png -------------------------------------------------------------------------------- /assets/asyncio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/asyncio.png -------------------------------------------------------------------------------- /assets/blockingio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/blockingio.png -------------------------------------------------------------------------------- /assets/ca232a82-b4dc-11e6-88b8-bc4a8704c543.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/ca232a82-b4dc-11e6-88b8-bc4a8704c543.png -------------------------------------------------------------------------------- /assets/cdn_addCDN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/cdn_addCDN.png -------------------------------------------------------------------------------- /assets/cdn_traditional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/cdn_traditional.png -------------------------------------------------------------------------------- /assets/chrometasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/chrometasks.png -------------------------------------------------------------------------------- /assets/cluster_net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/cluster_net.png -------------------------------------------------------------------------------- /assets/con1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/con1.png -------------------------------------------------------------------------------- /assets/con2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/con2.png -------------------------------------------------------------------------------- /assets/con3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/con3.png -------------------------------------------------------------------------------- /assets/cpuio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/cpuio.png -------------------------------------------------------------------------------- /assets/cssom-construction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/cssom-construction.png -------------------------------------------------------------------------------- /assets/dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/dns.png -------------------------------------------------------------------------------- /assets/dns_lookup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/dns_lookup.jpg -------------------------------------------------------------------------------- /assets/full-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/full-process.png -------------------------------------------------------------------------------- /assets/hand1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/hand1.png -------------------------------------------------------------------------------- /assets/hand2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/hand2.png -------------------------------------------------------------------------------- /assets/hand3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/hand3.png -------------------------------------------------------------------------------- /assets/hand_SUm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/hand_SUm.png -------------------------------------------------------------------------------- /assets/http-cache-decision-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/http-cache-decision-tree.png -------------------------------------------------------------------------------- /assets/http-cache-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/http-cache-hierarchy.png -------------------------------------------------------------------------------- /assets/http-luoxia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/http-luoxia.png -------------------------------------------------------------------------------- /assets/image011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/image011.png -------------------------------------------------------------------------------- /assets/image019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/image019.png -------------------------------------------------------------------------------- /assets/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/layers.png -------------------------------------------------------------------------------- /assets/mem1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/mem1.png -------------------------------------------------------------------------------- /assets/mem2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/mem2.png -------------------------------------------------------------------------------- /assets/mem3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/mem3.png -------------------------------------------------------------------------------- /assets/memory1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/memory1.png -------------------------------------------------------------------------------- /assets/memory2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/memory2.png -------------------------------------------------------------------------------- /assets/memory3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/memory3.jpeg -------------------------------------------------------------------------------- /assets/memory3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/memory3.png -------------------------------------------------------------------------------- /assets/memory4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/memory4.png -------------------------------------------------------------------------------- /assets/nat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/nat.png -------------------------------------------------------------------------------- /assets/node_gc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/node_gc.jpg -------------------------------------------------------------------------------- /assets/process1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/process1.png -------------------------------------------------------------------------------- /assets/react-inter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/react-inter.png -------------------------------------------------------------------------------- /assets/readio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/readio.png -------------------------------------------------------------------------------- /assets/render-tree-construction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/render-tree-construction.png -------------------------------------------------------------------------------- /assets/routers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/routers.png -------------------------------------------------------------------------------- /assets/screenhot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot1.png -------------------------------------------------------------------------------- /assets/screenhot10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot10.png -------------------------------------------------------------------------------- /assets/screenhot11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot11.png -------------------------------------------------------------------------------- /assets/screenhot12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot12.png -------------------------------------------------------------------------------- /assets/screenhot13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot13.png -------------------------------------------------------------------------------- /assets/screenhot14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot14.png -------------------------------------------------------------------------------- /assets/screenhot15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot15.png -------------------------------------------------------------------------------- /assets/screenhot16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot16.png -------------------------------------------------------------------------------- /assets/screenhot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot2.png -------------------------------------------------------------------------------- /assets/screenhot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot3.png -------------------------------------------------------------------------------- /assets/screenhot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot4.png -------------------------------------------------------------------------------- /assets/screenhot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot5.png -------------------------------------------------------------------------------- /assets/screenhot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot6.png -------------------------------------------------------------------------------- /assets/screenhot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot7.png -------------------------------------------------------------------------------- /assets/screenhot8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot8.png -------------------------------------------------------------------------------- /assets/screenhot9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/screenhot9.png -------------------------------------------------------------------------------- /assets/selectio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/selectio.png -------------------------------------------------------------------------------- /assets/sweeping与compacting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/sweeping与compacting.jpg -------------------------------------------------------------------------------- /assets/tcp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/tcp1.png -------------------------------------------------------------------------------- /assets/tcp_hand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/tcp_hand.jpg -------------------------------------------------------------------------------- /assets/tcp_pdu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/tcp_pdu.png -------------------------------------------------------------------------------- /assets/tcpbye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/tcpbye.jpg -------------------------------------------------------------------------------- /assets/timing-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/timing-overview.png -------------------------------------------------------------------------------- /assets/webkitflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/webkitflow.png -------------------------------------------------------------------------------- /assets/webpack-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/webpack-intro.png -------------------------------------------------------------------------------- /assets/堆内外内存分配.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/堆内外内存分配.jpg -------------------------------------------------------------------------------- /assets/密钥交换.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/密钥交换.png -------------------------------------------------------------------------------- /assets/屏幕快照 2017-12-03 下午10.05.11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/屏幕快照 2017-12-03 下午10.05.11.png -------------------------------------------------------------------------------- /assets/延迟因素.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/assets/延迟因素.png -------------------------------------------------------------------------------- /即时应用与P2P/UDP协议.md: -------------------------------------------------------------------------------- 1 | # UDP协议 2 | 3 | // todo 4 | -------------------------------------------------------------------------------- /即时应用与P2P/WebRTC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/即时应用与P2P/WebRTC.md -------------------------------------------------------------------------------- /响应式编程/PubSub方式.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/响应式编程/PubSub方式.md -------------------------------------------------------------------------------- /响应式编程/Vue方式.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/响应式编程/Vue方式.md -------------------------------------------------------------------------------- /响应式编程/脏检查机制.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/响应式编程/脏检查机制.md -------------------------------------------------------------------------------- /带宽与延迟/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/带宽与延迟/README.md -------------------------------------------------------------------------------- /带宽与延迟/TCP协议细节.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/带宽与延迟/TCP协议细节.md -------------------------------------------------------------------------------- /带宽与延迟/从输入URL开始.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/带宽与延迟/从输入URL开始.md -------------------------------------------------------------------------------- /带宽与延迟/带宽与延迟.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/带宽与延迟/带宽与延迟.md -------------------------------------------------------------------------------- /缓存机制/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/缓存机制/README.md -------------------------------------------------------------------------------- /缓存机制/优化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/缓存机制/优化.md -------------------------------------------------------------------------------- /缓存机制/浏览器行为.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/缓存机制/浏览器行为.md -------------------------------------------------------------------------------- /缓存机制/首部字段.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/缓存机制/首部字段.md -------------------------------------------------------------------------------- /网页渲染原理/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/网页渲染原理/README.md -------------------------------------------------------------------------------- /网页渲染原理/repaint与reflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/网页渲染原理/repaint与reflow.md -------------------------------------------------------------------------------- /网页渲染原理/浏览器优化策略.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/网页渲染原理/浏览器优化策略.md -------------------------------------------------------------------------------- /网页渲染原理/渲染过程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/网页渲染原理/渲染过程.md -------------------------------------------------------------------------------- /网页渲染原理/资源加载顺序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/网页渲染原理/资源加载顺序.md -------------------------------------------------------------------------------- /虚拟DOM/React基础.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/虚拟DOM/React基础.md -------------------------------------------------------------------------------- /虚拟DOM/实现.md: -------------------------------------------------------------------------------- 1 | # 虚拟DOM实现 2 | 3 | // todo -------------------------------------------------------------------------------- /静态资源/CDN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/静态资源/CDN.md -------------------------------------------------------------------------------- /静态资源/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/静态资源/README.md -------------------------------------------------------------------------------- /静态资源/Webpack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/静态资源/Webpack.md -------------------------------------------------------------------------------- /静态资源/图像优化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/静态资源/图像优化.md -------------------------------------------------------------------------------- /静态资源/资源压缩.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/静态资源/资源压缩.md -------------------------------------------------------------------------------- /高性能JavaScript/GC机制.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/高性能JavaScript/GC机制.md -------------------------------------------------------------------------------- /高性能JavaScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/高性能JavaScript/README.md -------------------------------------------------------------------------------- /高性能JavaScript/V8与JIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/高性能JavaScript/V8与JIT.md -------------------------------------------------------------------------------- /高性能JavaScript/内存管理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laoqiren/web-performance/HEAD/高性能JavaScript/内存管理.md --------------------------------------------------------------------------------