vanillajs-deck/slides/080-why.html

17 lines
548 B
HTML
Raw Normal View History

<title>Why Frameworks in the First Place?</title>
<h1>Why Frameworks in the First Place?</h1>
<ul>
2019-12-03 19:22:14 +00:00
<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/manage the dependency graph",
"Testability",
"Databinding",
"Contacts (Types and Interfaces ➡ TypeScript)",
"Minification or \"Packing\""
];
</script>