well I heard about it but not yet actively used it 😅
thanks for the reminder 👍
Posts by Nils Schönwald
import { loadEnvFile } from 'node:process'; // load .env file with default path ('./.env`) loadEnvFile(); // load .env file with a custom path loadEnvFile('../../.env');
TIL that modern Node not only supports `--env-file` / `--env-file-if-exists` but also a new method to programmatically load .env files.
It's been marked stable since Node v24 (current LTS), and I'm now on the journey of removing all the `dotenv` dependencies. 😅
www.stefanjudis.com/today-i-lear...
I Built the Same App 10 Times: Evaluating Frameworks for Mobile Performance
The amount of work going into this article is absurd. 👏 Loren has built the same web app in ten frameworks and compared and measured the performance. Why?
To find the most suitable framework for a project.
www.lorenstew.art/blog/10-kanb...
The Big Gotcha With @starting-style I didn't knwo about from @joshwcomeau https://www.joshwcomeau.com/css/starting-style/
Hello World!