Echo JS 0.11.0

<~>

sylvainpv comments

sylvainpv 3501 days ago. link 3 points
If the majority of incoming requests are not first-time visitors, then client-side templating is faster in most cases because they can benefit from all the client-side cache mechanisms. I was really impressed by the results of Offline-first approach applied to one of my professional projects.
sylvainpv 3532 days ago. link 0 point
You don't need a virtual DOM to re-render everything when state changes. We did not wait for React nor Angular to write change detection algorithms. Virtual DOM is one of the techniques of data-binding, and presumed the best performing. A few milliseconds saved at rendering, tenths of a second lost at initial loading. Is it really worth it ?
sylvainpv 3540 days ago. link 1 point
what is the purpose of virtual DOM if not to speed up DOM manipulation ?
sylvainpv 3543 days ago. link -1 point
Both React and Web Components are overrated in my opinion. React is 127KB, Web Components polyfill is 105KB. This is a huge overhead for clients just to solve problems that can be dealt with build tools on the developper side. I have seen many benchmarks on DOM manipulation here, but never heard a client complaining "Oh, this DOM is slow". The number one problem in web performance has always been network latency.
sylvainpv 3553 days ago. link 1 point
Just because riot is well suited for a TodoMVC example does not make it a framework. It is minimalistic, it does not enforce a code style and it does not really offer much features. That does not make it less interesting
sylvainpv 3576 days ago. link 1 point
Server-first apps are a good idea --> dead link ; makes me laugh
sylvainpv 3581 days ago. link 1 point
note: Pure = vanilla JavaScript, not the PURE library by BeeBole neither PureCSS by Yahoo
sylvainpv 3594 days ago. link 2 points
client-side templates and applicationCache are a winning pair
[more]