How to keep reactivity with a composable and a prop in Vue3
You install
Vue3
and you decide to use thecomposable
and thecomposition api
to 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-sqlite3
or/and its helperbetter-sqlite3-helper
to 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_VERSION
error.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
yield
expression in a generator body it can be tricky to use a callback-based library in your saga (a generator function).