Daily Shaarli

All links of one day in a single page.

October 23, 2024

How we optimized package imports in Next.js - Vercel
thumbnail

How solving barrel files led to faster cold boots and build times.

TIL about something I've observed, but it has a name for it.

// in index.js
export { module1 } from './module1';
export { module2 } from './module2';
export { module3 } from './module3';