Bad internet connection (number and size of requests) ◦ Webpack’s code splitting • Delay between rendering initial HTML File an App (ng2 / react / vue) App re-rendering (Initial Load) 7
2.1.10 -- MIT-license • Framework for building SPA (MVVM) • Avoided problems of other frameworks (like Angular and React) • Similar to React: ◦ Provide reactive and composable view components ◦ Utilize a virtual DOM 9
template: '<div>You have been here for {{ counter }} seconds.</div>', data: { counter: 0 }, created: function () { var vm = this setInterval(function () { vm.counter += 1 }, 1000) } })
site won’t show up in search engines ◦ Google renders JavaScript but others don’t • Performance ◦ SSR improve performance ◦ SSR degrades performance ◦ http://andrewhfarmer.com/server-side-render/ 20