├── .gitignore ├── LICENSE.md ├── README.md ├── critical-rendering-path ├── .gitignore ├── index.html ├── package-lock.json ├── package.json └── server.js ├── css-animation ├── .gitignore ├── index.html ├── package-lock.json ├── package.json ├── script.js ├── server.js └── style.css ├── fonts ├── .gitignore ├── index.html ├── package-lock.json ├── package.json ├── sansation_light.woff └── server.js ├── layers ├── 1 │ ├── index.html │ ├── script.js │ └── style.css ├── 2 │ ├── index.html │ ├── script.js │ └── style.css ├── 3 │ ├── index.html │ ├── script.js │ └── style.css ├── 4 │ ├── index.html │ ├── script.js │ └── style.css ├── 5 │ └── index.html ├── .gitignore ├── index.html ├── package-lock.json ├── package.json ├── script.js ├── server.js └── style.css ├── layout-trashing ├── 1 │ └── index.html ├── 2 │ └── index.html ├── 3 │ └── index.html ├── 4 │ ├── app.js │ ├── index.html │ ├── logo-1024px.png │ └── styles.css ├── 5 │ └── index.html ├── .gitignore ├── index.html ├── package-lock.json ├── package.json └── server.js ├── lazy-load-images ├── 1 │ ├── index.html │ ├── script.js │ └── style.css ├── 2 │ ├── index.html │ ├── script.js │ └── style.css ├── 3 │ ├── index.html │ └── style.css ├── .gitignore ├── index.html ├── package-lock.json ├── package.json ├── server.js └── style.css ├── lighthouse ├── .gitignore ├── assets │ ├── css │ │ ├── banner.css │ │ ├── gallery.css │ │ └── index.css │ ├── images │ │ └── coding.png │ ├── js │ │ ├── banner.js │ │ ├── imageoptimizer.js │ │ ├── main.js │ │ └── performance.js │ └── libs │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── lodash.js │ │ └── lodash.min.js ├── index.html ├── logs │ └── performance.csv ├── package-lock.json ├── package.json ├── report.html └── server.js ├── network ├── .gitignore ├── css │ ├── color.css │ ├── style1.css │ ├── style2.css │ ├── style3.css │ ├── style4.css │ ├── style5.css │ ├── style6.css │ ├── style7.css │ └── style8.css ├── images │ ├── bootcamp-web-performance.png │ └── coding.png ├── index.html ├── js │ ├── script1.js │ ├── script2.js │ ├── script3.js │ ├── script4.js │ ├── script5.js │ ├── script6.js │ ├── script7.js │ └── script8.js ├── libs │ ├── animate.css │ └── bootstrap.css ├── links.txt ├── package-lock.json ├── package.json ├── script.js └── server.js ├── paint-profiler ├── .gitignore ├── index.html ├── package-lock.json ├── package.json └── server.js ├── parser-blocking ├── 1 │ ├── index.html │ └── script.js ├── 2 │ ├── index.html │ └── script.js ├── 3 │ ├── index.html │ └── script.js ├── .gitignore ├── index.html ├── package-lock.json ├── package.json ├── script.js └── server.js ├── render-blocking ├── 1 │ ├── index.html │ ├── style1.css │ └── style2.css ├── 2 │ ├── index.html │ ├── style1.css │ └── style2.css ├── 3 │ ├── index.html │ ├── style1.css │ └── style2.css ├── 4 │ ├── color.css │ ├── index.html │ └── style1.css ├── 5 │ ├── index.html │ ├── style1.css │ └── style2.css ├── 6 │ ├── index.html │ └── style1.css ├── 7 │ ├── index.html │ └── style1.css ├── .gitignore ├── index.html ├── package-lock.json ├── package.json └── server.js └── web-performance.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | lighthouse-complete/ 3 | node_modules 4 | yarn.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/README.md -------------------------------------------------------------------------------- /critical-rendering-path/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /critical-rendering-path/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/critical-rendering-path/index.html -------------------------------------------------------------------------------- /critical-rendering-path/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/critical-rendering-path/package-lock.json -------------------------------------------------------------------------------- /critical-rendering-path/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/critical-rendering-path/package.json -------------------------------------------------------------------------------- /critical-rendering-path/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/critical-rendering-path/server.js -------------------------------------------------------------------------------- /css-animation/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /css-animation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/css-animation/index.html -------------------------------------------------------------------------------- /css-animation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/css-animation/package-lock.json -------------------------------------------------------------------------------- /css-animation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/css-animation/package.json -------------------------------------------------------------------------------- /css-animation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/css-animation/script.js -------------------------------------------------------------------------------- /css-animation/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/css-animation/server.js -------------------------------------------------------------------------------- /css-animation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/css-animation/style.css -------------------------------------------------------------------------------- /fonts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/fonts/index.html -------------------------------------------------------------------------------- /fonts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/fonts/package-lock.json -------------------------------------------------------------------------------- /fonts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/fonts/package.json -------------------------------------------------------------------------------- /fonts/sansation_light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/fonts/sansation_light.woff -------------------------------------------------------------------------------- /fonts/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/fonts/server.js -------------------------------------------------------------------------------- /layers/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /layers/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/1/index.html -------------------------------------------------------------------------------- /layers/1/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/1/script.js -------------------------------------------------------------------------------- /layers/1/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/1/style.css -------------------------------------------------------------------------------- /layers/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/2/index.html -------------------------------------------------------------------------------- /layers/2/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/2/script.js -------------------------------------------------------------------------------- /layers/2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/2/style.css -------------------------------------------------------------------------------- /layers/3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/3/index.html -------------------------------------------------------------------------------- /layers/3/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/3/script.js -------------------------------------------------------------------------------- /layers/3/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/3/style.css -------------------------------------------------------------------------------- /layers/4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/4/index.html -------------------------------------------------------------------------------- /layers/4/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/4/script.js -------------------------------------------------------------------------------- /layers/4/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/4/style.css -------------------------------------------------------------------------------- /layers/5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/5/index.html -------------------------------------------------------------------------------- /layers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/index.html -------------------------------------------------------------------------------- /layers/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/package-lock.json -------------------------------------------------------------------------------- /layers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/package.json -------------------------------------------------------------------------------- /layers/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/script.js -------------------------------------------------------------------------------- /layers/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/server.js -------------------------------------------------------------------------------- /layers/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layers/style.css -------------------------------------------------------------------------------- /layout-trashing/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /layout-trashing/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layout-trashing/1/index.html -------------------------------------------------------------------------------- /layout-trashing/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layout-trashing/2/index.html -------------------------------------------------------------------------------- /layout-trashing/3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layout-trashing/3/index.html -------------------------------------------------------------------------------- /layout-trashing/4/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layout-trashing/4/app.js -------------------------------------------------------------------------------- /layout-trashing/4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layout-trashing/4/index.html -------------------------------------------------------------------------------- /layout-trashing/4/logo-1024px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layout-trashing/4/logo-1024px.png -------------------------------------------------------------------------------- /layout-trashing/4/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layout-trashing/4/styles.css -------------------------------------------------------------------------------- /layout-trashing/5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layout-trashing/5/index.html -------------------------------------------------------------------------------- /layout-trashing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layout-trashing/index.html -------------------------------------------------------------------------------- /layout-trashing/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layout-trashing/package-lock.json -------------------------------------------------------------------------------- /layout-trashing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layout-trashing/package.json -------------------------------------------------------------------------------- /layout-trashing/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/layout-trashing/server.js -------------------------------------------------------------------------------- /lazy-load-images/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /lazy-load-images/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lazy-load-images/1/index.html -------------------------------------------------------------------------------- /lazy-load-images/1/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lazy-load-images/1/script.js -------------------------------------------------------------------------------- /lazy-load-images/1/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lazy-load-images/1/style.css -------------------------------------------------------------------------------- /lazy-load-images/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lazy-load-images/2/index.html -------------------------------------------------------------------------------- /lazy-load-images/2/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lazy-load-images/2/script.js -------------------------------------------------------------------------------- /lazy-load-images/2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lazy-load-images/2/style.css -------------------------------------------------------------------------------- /lazy-load-images/3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lazy-load-images/3/index.html -------------------------------------------------------------------------------- /lazy-load-images/3/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lazy-load-images/3/style.css -------------------------------------------------------------------------------- /lazy-load-images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lazy-load-images/index.html -------------------------------------------------------------------------------- /lazy-load-images/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lazy-load-images/package-lock.json -------------------------------------------------------------------------------- /lazy-load-images/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lazy-load-images/package.json -------------------------------------------------------------------------------- /lazy-load-images/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lazy-load-images/server.js -------------------------------------------------------------------------------- /lazy-load-images/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lazy-load-images/style.css -------------------------------------------------------------------------------- /lighthouse/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /lighthouse/assets/css/banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/assets/css/banner.css -------------------------------------------------------------------------------- /lighthouse/assets/css/gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/assets/css/gallery.css -------------------------------------------------------------------------------- /lighthouse/assets/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/assets/css/index.css -------------------------------------------------------------------------------- /lighthouse/assets/images/coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/assets/images/coding.png -------------------------------------------------------------------------------- /lighthouse/assets/js/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/assets/js/banner.js -------------------------------------------------------------------------------- /lighthouse/assets/js/imageoptimizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/assets/js/imageoptimizer.js -------------------------------------------------------------------------------- /lighthouse/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/assets/js/main.js -------------------------------------------------------------------------------- /lighthouse/assets/js/performance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/assets/js/performance.js -------------------------------------------------------------------------------- /lighthouse/assets/libs/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/assets/libs/jquery.js -------------------------------------------------------------------------------- /lighthouse/assets/libs/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/assets/libs/jquery.min.js -------------------------------------------------------------------------------- /lighthouse/assets/libs/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/assets/libs/lodash.js -------------------------------------------------------------------------------- /lighthouse/assets/libs/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/assets/libs/lodash.min.js -------------------------------------------------------------------------------- /lighthouse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/index.html -------------------------------------------------------------------------------- /lighthouse/logs/performance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/logs/performance.csv -------------------------------------------------------------------------------- /lighthouse/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/package-lock.json -------------------------------------------------------------------------------- /lighthouse/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/package.json -------------------------------------------------------------------------------- /lighthouse/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/report.html -------------------------------------------------------------------------------- /lighthouse/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/lighthouse/server.js -------------------------------------------------------------------------------- /network/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /network/css/color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/network/css/color.css -------------------------------------------------------------------------------- /network/css/style1.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/css/style2.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/css/style3.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/css/style4.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/css/style5.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/css/style6.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/css/style7.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/css/style8.css: -------------------------------------------------------------------------------- 1 | @import url(./color.css); 2 | 3 | 4 | -------------------------------------------------------------------------------- /network/images/bootcamp-web-performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/network/images/bootcamp-web-performance.png -------------------------------------------------------------------------------- /network/images/coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/network/images/coding.png -------------------------------------------------------------------------------- /network/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/network/index.html -------------------------------------------------------------------------------- /network/js/script1.js: -------------------------------------------------------------------------------- 1 | console.log('Script 1'); -------------------------------------------------------------------------------- /network/js/script2.js: -------------------------------------------------------------------------------- 1 | console.log('Script 2'); -------------------------------------------------------------------------------- /network/js/script3.js: -------------------------------------------------------------------------------- 1 | console.log('Script 3'); -------------------------------------------------------------------------------- /network/js/script4.js: -------------------------------------------------------------------------------- 1 | console.log('Script 4'); -------------------------------------------------------------------------------- /network/js/script5.js: -------------------------------------------------------------------------------- 1 | console.log('Script 5'); -------------------------------------------------------------------------------- /network/js/script6.js: -------------------------------------------------------------------------------- 1 | console.log('Script 6'); -------------------------------------------------------------------------------- /network/js/script7.js: -------------------------------------------------------------------------------- 1 | console.log('Script 7'); -------------------------------------------------------------------------------- /network/js/script8.js: -------------------------------------------------------------------------------- 1 | console.log('Script 8'); -------------------------------------------------------------------------------- /network/libs/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/network/libs/animate.css -------------------------------------------------------------------------------- /network/libs/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/network/libs/bootstrap.css -------------------------------------------------------------------------------- /network/links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/network/links.txt -------------------------------------------------------------------------------- /network/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/network/package-lock.json -------------------------------------------------------------------------------- /network/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/network/package.json -------------------------------------------------------------------------------- /network/script.js: -------------------------------------------------------------------------------- 1 | console.log('Hello World!'); -------------------------------------------------------------------------------- /network/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/network/server.js -------------------------------------------------------------------------------- /paint-profiler/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /paint-profiler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/paint-profiler/index.html -------------------------------------------------------------------------------- /paint-profiler/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/paint-profiler/package-lock.json -------------------------------------------------------------------------------- /paint-profiler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/paint-profiler/package.json -------------------------------------------------------------------------------- /paint-profiler/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/paint-profiler/server.js -------------------------------------------------------------------------------- /parser-blocking/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /parser-blocking/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/parser-blocking/1/index.html -------------------------------------------------------------------------------- /parser-blocking/1/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/parser-blocking/1/script.js -------------------------------------------------------------------------------- /parser-blocking/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/parser-blocking/2/index.html -------------------------------------------------------------------------------- /parser-blocking/2/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/parser-blocking/2/script.js -------------------------------------------------------------------------------- /parser-blocking/3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/parser-blocking/3/index.html -------------------------------------------------------------------------------- /parser-blocking/3/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parser-blocking/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/parser-blocking/index.html -------------------------------------------------------------------------------- /parser-blocking/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/parser-blocking/package-lock.json -------------------------------------------------------------------------------- /parser-blocking/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/parser-blocking/package.json -------------------------------------------------------------------------------- /parser-blocking/script.js: -------------------------------------------------------------------------------- 1 | console.log('Hello World!'); -------------------------------------------------------------------------------- /parser-blocking/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/parser-blocking/server.js -------------------------------------------------------------------------------- /render-blocking/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /render-blocking/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/render-blocking/1/index.html -------------------------------------------------------------------------------- /render-blocking/1/style1.css: -------------------------------------------------------------------------------- 1 | span { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /render-blocking/1/style2.css: -------------------------------------------------------------------------------- 1 | span { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /render-blocking/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/render-blocking/2/index.html -------------------------------------------------------------------------------- /render-blocking/2/style1.css: -------------------------------------------------------------------------------- 1 | span { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /render-blocking/2/style2.css: -------------------------------------------------------------------------------- 1 | span { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /render-blocking/3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/render-blocking/3/index.html -------------------------------------------------------------------------------- /render-blocking/3/style1.css: -------------------------------------------------------------------------------- 1 | span { 2 | color: red !important; 3 | } 4 | -------------------------------------------------------------------------------- /render-blocking/3/style2.css: -------------------------------------------------------------------------------- 1 | span { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /render-blocking/4/color.css: -------------------------------------------------------------------------------- 1 | span { 2 | color: green !important; 3 | } 4 | -------------------------------------------------------------------------------- /render-blocking/4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/render-blocking/4/index.html -------------------------------------------------------------------------------- /render-blocking/4/style1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/render-blocking/4/style1.css -------------------------------------------------------------------------------- /render-blocking/5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/render-blocking/5/index.html -------------------------------------------------------------------------------- /render-blocking/5/style1.css: -------------------------------------------------------------------------------- 1 | span { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /render-blocking/5/style2.css: -------------------------------------------------------------------------------- 1 | span { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /render-blocking/6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/render-blocking/6/index.html -------------------------------------------------------------------------------- /render-blocking/6/style1.css: -------------------------------------------------------------------------------- 1 | span { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /render-blocking/7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/render-blocking/7/index.html -------------------------------------------------------------------------------- /render-blocking/7/style1.css: -------------------------------------------------------------------------------- 1 | span { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /render-blocking/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/render-blocking/index.html -------------------------------------------------------------------------------- /render-blocking/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/render-blocking/package-lock.json -------------------------------------------------------------------------------- /render-blocking/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/render-blocking/package.json -------------------------------------------------------------------------------- /render-blocking/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/render-blocking/server.js -------------------------------------------------------------------------------- /web-performance.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkodeio/web-performance-bootcamp/HEAD/web-performance.pdf --------------------------------------------------------------------------------