-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 2.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Fallacies of JS Performance</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div class="container">
<h1>Fallacies of JS Performance</h1>
<ul>
<li><a href="https://github.com/karimsa/fallaciesofjsperf/tree/master/justifications/minification-is-for-frontend.md">Minification is for the front-end.</a></li>
<li><a href="https://github.com/karimsa/fallaciesofjsperf/tree/master/justifications/bundling-is-for-frontend.md">Bundling is for the front-end.</a></li>
<li><a href="https://github.com/karimsa/fallaciesofjsperf/tree/master/justifications/inheritance-is-free.md">Inheritance is free.</a></li>
<li><a href="https://github.com/karimsa/fallaciesofjsperf/tree/master/justifications/objects-are-hashmaps.md">Objects are hashmaps.</a></li>
<li><a href="https://github.com/karimsa/fallaciesofjsperf/tree/master/justifications/env-vars-are-constant.md">Environment variables are constant.</a></li>
<li><a href="https://github.com/karimsa/fallaciesofjsperf/tree/master/justifications/stack-frames-are-free.md">Stack frames are free.</a></li>
<li><a href="https://github.com/karimsa/fallaciesofjsperf/tree/master/justifications/logic-should-be-async.md">Logic should be as async as possible.</a></li>
<li><a href="https://github.com/karimsa/fallaciesofjsperf/tree/master/justifications/runtime-is-single-threaded.md">The JS runtime is single-threaded.</a></li>
<li><a href="https://github.com/karimsa/fallaciesofjsperf/tree/master/justifications/ssr-is-for-seo.md">SSR is only for SEO.</a></li>
</ul>
<footer>
<p>Copyright © 2018-present <a href="https://alibhai.co">Karim Alibhai</a>. Licensed under MIT license.</p>
<p><a href="https://github.com/karimsa/fallaciesofjsperf">github.com/karimsa/fallaciesofjsperf</a></p>
</footer>
</div>
</body>
</html>