How to keep reactivity with a composable and a prop in Vue3
You install
Vue3and you decide to use thecomposableand thecomposition apito be faster and follow good practice, but something seems wrong and the destructured constant from the composable doesn’t update when your prop update? I got you!How to solve the node version mismatch issue with an environment composed of electron, sqlite and jest
You added
sqlite,better-sqlite3or/and its helperbetter-sqlite3-helperto your electron app, and you can now nicely bundle a database into your app. Everything looks good… Except when you write integration tests for your SQL queries and you end up with a strangeNODE_MODULE_VERSIONerror.How to make a performance testing on a socket.io server
What you will learn? Use Artillery to make a performance test on a socket.io v3+ server.
How to force Go to use a different version of a derived dependency
Suddenly, your CI pipeline starts failing because the dependency checker step fails on a CVE being detected in a derived package used by one of your dependencies. Is there a way in Go to change the version of the derived package?
How to use Redux-Saga effects within a callback
Because you can only add a
yieldexpression in a generator body it can be tricky to use a callback-based library in your saga (a generator function).