vanillajs-deck/slides/080-why.html
Jeremy Likness e2d52d32e9 Refactor PWA
2019-12-03 15:28:57 -08:00

17 lines
537 B
HTML

<title>Why Frameworks in the First Place?</title>
<h1>Why Frameworks in the First Place?</h1>
<ul>
<li class="appear" repeat="why">{{item}}</li>
</ul>
<script>
this.why = [
"Differences in the DOM (i.e. jQuery normalization)",
"Lack of built-in templates",
"Need for SPA routing (journal)",
"Asynchronous module loading/dependency graph",
"Testability",
"Databinding",
"Contacts (Types and Interfaces ➡ TypeScript)",
"Minification or \"Packing\""
];
</script>