Vue.js programmatic rendering example

I recently started working on a Vue.js components library and I ran into the following rendering problem. I wanted a generic button…

August 30, 2020

Why I don't like Vue.js mixins

Vue.js comes with its mixin concept to share logic between components, this way we can extract common properties into a separate module…

August 01, 2020

Eager vs Lazy in RxJS

I made a mistake many times in RxJS when I use a function to perform a side effect in a stream. The following factory function creates a…

January 21, 2020

Managing subscriptions in Angular

This blog post was originally a talk I gave at Angular Lyon meetup. Subscribe for further cool events. You probably know that Observables…

December 22, 2019

Reusable layouts in Angular

Edit 2020-11-23 : I still use this trick for my Angular projects and the more I use other technologies like Nuxt.js or Next.js, the more I…

November 16, 2019

Service worker runtime cache made easy

Service workers improve client-side performance but they are not easy to build. They bring complexity in the build pipeline and they have a…

January 24, 2019

Experimenting with lit-html

The Polymer team at Google work on a higher abstraction over web components. I use that library from the version and today I migrated an…

December 21, 2018

Data store service in Angular

Managing state is challenging when building modern web applications. In this post I will show you a simple way to organize your own state…

December 10, 2018