Jan 25 · 7 min read · Ever wondered what happens when you run npm start or npm run build? How does your JSX code, imports, and CSS get transformed into files that browsers understand? The answer is Webpack - the tool that bundles your React app into optimized files ready ...
Join discussion
Nov 28, 2025 · 3 min read · 프론트엔드 개발자라면 누구나 한 번쯤 고민해 봤을 Webpack 번들링 최적화 주제를 다뤄보려 합니다.특히, 재사용 가능한 라이브러리를 개발하고 배포할 때 필수인 externals 옵션에 대해 자세히 알아보겠습니다. 이 글은 실제 개발 과정에서 발생할 수 있는 문제점과 그 해결책을 중심으로 구성되어 있습니다. 🧐 Webpack externals 옵션이란? externals 옵션은 Webpack에게 "특정 모듈은 번들에 포함시키지 마라" 라고...
Join discussionJun 27, 2025 · 9 min read · Modern web projelerinin, hem arka-yüz (back-end veya server-side) hem de ön-yüz (front-end veya client-side) geliştirmede tercih edilen yöntemlerinden en popüler ve belki de standart haline gelmiş kabul edilen yolu, Node.js yazılımı ile (basitçe tara...
Join discussion
Jun 14, 2025 · 4 min read · Designing a notification system that is both reliable and scalable is far from trivial. In this post, I’ll walk through how I built a fault-tolerant notification infrastructure using Redis Streams, complete with retries, circuit breakers, dead-letter...
Join discussionMar 7, 2025 · 3 min read · If you’ve ever worked on a web project, you know how important it is to make your app fast and accessible for all users. But here’s the catch: not all users are on the same browser. Some are on the latest versions of Chrome or Firefox, while others m...
Join discussion
Feb 13, 2025 · 5 min read · The JavaScript world today is often synonymous with complex build processes. Webpack, Babel, PostCSS, TypeScript—it feels like every new project comes bundled with a monstrous configuration file. As much as these tools have improved our workflow and ...
Join discussion
Feb 2, 2025 · 4 min read · Swagger Bundling Hello everyone, I would like you to introduce Swagger bundling which I discovered recently and implemented while working on our API documentation. What is Swagger Bundling? Swagger Bundling is a process used for managing large comple...
Join discussion
Jan 26, 2025 · 5 min read · When building web applications, performance is everything. Users expect apps to load fast and feel responsive. That’s where code splitting and bundling come into play. These techniques ensure your app only loads the JavaScript it needs for a given pa...
Join discussion