Chaining Javascript filters recursively
I recently realize a POC with Vue.js. I was confronted to this problem: how to apply an unknown number of filter to a collection? My…
I recently realize a POC with Vue.js. I was confronted to this problem: how to apply an unknown number of filter to a collection? My…
A few weeks ago I found on my twitter feed a very interesting blog post: “The Best Frontend JavaScript Interview Questions (written by a…
I faced a problem recently. I have a reference data package which is an npm package that can be consumed by two different projects: The…
I have been working with monorepos for a couple of years now. I really like to have everything in one place. But this architectural style o…
A few weeks ago, memoization helped me to fix a performance issue in my Vue.js application. The result looks like a “Vue.js computed…
Today, I want to talk about testing in the Vue.js ecosystem. Between my previous job and my current one, I’ve been searching for too long a…
Axios is a very popular library you can use to perform HTTP calls. Because it’s not framework specific, you can easily use it in your Vue.js…
When feature came with ECMAScript 2017, it literally brought promises to the next level. In a nutshell, it removes the removing Pyramid of…
Edit 25/05/2020: The title of this article has been edited. The company I’m working for recently set a code coverage rule requirement…
TL;DR: Generating share images can be done in 3 steps: create a preview page; screenshot it (with Puppeteer); add the image in the page’s…
I spent too many hours trying to mock correctly the JavaScript’s Date object. I tried a few things I’ve found on Google… without success. I…
TLDR; Split your application into completely isolated modules Consider micro-frontends architecture Don’t overuse your Vuex store Tip #1…
Two months ago, I was in the DublinJS meetup. As usual, the talk I came for, wasn’t the most interesting one. The talk about ember-ghost com…
Last month, I gave a talk about Immutability for functional JavaScript in the DublinJS meetup (slides). I discovered Immutability almost 2…
A few months ago, I start moving my Javascript code from an Oriented Object/unorganized code to something much more close to Functional…