vanillajs-deck/slides/080-why.html

21 lines
662 B
HTML
Raw Normal View History

<title>Why Frameworks in the First Place?</title>
<h1>Why Frameworks in the First Place?</h1>
<div class="center">
<div class="card appear" repeat="why">
<span>{{item}}</span>
</div>
</div>
2019-12-03 19:22:14 +00:00
<script>
this.why = [
"Differences in the DOM (i.e. jQuery normalization)",
"Lack of built-in templates",
"Need for SPA routing (journal)",
2019-12-03 23:28:57 +00:00
"Asynchronous module loading/dependency graph",
2019-12-03 19:22:14 +00:00
"Testability",
"Databinding",
"Contracts (Types and Interfaces ➡ TypeScript)",
2019-12-03 19:22:14 +00:00
"Minification or \"Packing\""
];
</script>
2020-01-29 18:26:00 +00:00
<next-slide>090-embrace</next-slide>
<transition>slide-left</transition>