Laurens Groeneveld

TIL

💡 Quick notes on things I learned today
April 1, 2026
npm min-release-age

Only dependences older than the given timerange are installed with this setting (MinimumReleaseAge in pnpm, min-release-age in npm), to prevent supply chain attacks.

March 27, 2026
.filter(Boolean)

In JavaScript, using .filter(Boolean) on an array of strings will filter out all empty string values. Noticed this in a code review today. I'd probably prefer .filter(v => v !== "") for clarity, but it's kinda neat.

March 26, 2026
document.designMode = 'on'

Setting this in the console makes all content in the site inline editable.

© Laurens Groeneveld - Content and website licensed under CC BY-SA 4.0