mirror of
https://github.com/JeremyLikness/vanillajs-deck
synced 2024-11-15 01:54:57 +00:00
12 lines
593 B
HTML
12 lines
593 B
HTML
|
<title>Why Frameworks in the First Place?</title>
|
||
|
<h1>Why Frameworks in the First Place?</h1>
|
||
|
<ul>
|
||
|
<li class="appear">Differences in the DOM (i.e. jQuery normalization)</li>
|
||
|
<li class="appear">Lack of built-in templates</li>
|
||
|
<li class="appear">Need for SPA routing (journal)</li>
|
||
|
<li class="appear">Asynchronous module loading/managing the dependency graph</li>
|
||
|
<li class="appear">Testability</li>
|
||
|
<li class="appear">Databinding</li>
|
||
|
<li class="appear">Contracts (Types and Interfaces ➡ TypeScript)</li>
|
||
|
<li class="appear">Minification or "Packing"</li>
|
||
|
</ul>
|