Dev stuff by Marc Veens
Marc Veens

Continuous file saving in React

Here's a short tutorial on how to implement saving custom content to the file system of an end user. This not only gives us the opportunity to save the file once, but by working in a...

Read more

Use MUI (Emotion) sourcemaps with Vite

When running npm run dev, the project runs locally and everything works fine. The only thing that doesn't work out of the box, are MUI sourcemaps. For those of you who don't know,...

Read more

Front-end development with mock APIs

NodeJS mock server: JavaScript client: --- If you've ever worked with APIs or backend developers these scenarios might sound familiar: - My front-end doesn't work because an API...

Read more

Run E2E JavaScript tests in Azure Devops

End-to-end tests are useful for simulating and validating a real user scenario. It is even more useful if you can automate these tests in a continuous integration service like Travis...

Read more

Use immer for state manipulation

Have you ever come across a situation where you have a deeply nested state and want you mutate a single property on the deepest level? You could do that using destructuring, but that...

Read more