Basavaraj Patilbasavarajrp.hashnode.dev·Nov 21, 2024A Complete Guide to Optimizing webpack with Preload, Prefetch, and Dynamic ImportsWhat's the Fuss About Module Loading? 🤔 Imagine you're building a complex e-commerce site. Your homepage needs to load quickly, but it also includes: Product Catalog Shopping cart User reviews Chat support Analytics Loading everything at once...DiscussWebpackwebpack
Think Throothinkthroo.hashnode.dev·Nov 8, 2024Bunchee, a bundler for JS/TS packageI found that Bunchee is used in t3-env to bundle their core, nextjs, nuxt packages. Bunchee Bunchee is a zero configuration bundler makes bundling JS/TS library effortless. It’s built on top of Rollup and SWC, allowing you to focus on writing code a...Discussbunchee
mideseniordevmideishere.hashnode.dev·Nov 3, 2024Unpacking Webpack For Frontend Developers (Part 2): Advanced Webpack FeaturesIntroduction In the first part of Unpacking Webpack For Frontend Developers, we covered Webpack's core concepts, focusing on setting up a configuration file, defining entry and output points, and using loaders to handle different file types such as C...Discuss·10 likes·45 readsUnpacking SeriesFrontend Developer
Zainab JINARIbenizcode.hashnode.dev·Oct 24, 2024What is a Bundler?Understanding Bundlers in React : In simple terms, a bundler is a tool which helps to bundle the entire React project into one single file or few files, which will be then run in the browser. Bundlers are used to improve the application performance, ...Discuss·10 likesFront-End Blogwebpack
JiffyLabsjiffylabs.hashnode.dev·Sep 2, 2024Bundler Earnings & Gas Calculations in 4337Only 10.21% of bundlers are currently profitable, with the majority yet to surpass $10 in profit. This profitability largely hinges on gas prices. In this post, we will explore the different gas parameters in ERC-4337 and examine how bundlers can gen...DiscussERC-4337
JiffyLabsjiffylabs.hashnode.dev·Aug 30, 2024What happens to a UserOp within a Bundler?Introduction Following our previous post on UserOperation CallData, several readers asked, "Why do we need a bundler when I can just relay the UserOp directly to the entrypoint from an Externally Owned Account (EOA)?" To answer this, let's break down...DiscussBundler
Nicanor Talks Webblog.nicanor.me·Jul 29, 2024JavaScript and TypeScript BundlersI recently took on a #WeekendBuild challenge idea to create an autocomplete/autosuggestions input package, nicanor-autocomplete. Of course, it seems like a stupid idea, but the end game was learning and building a package-ready product. In the proces...DiscussBundler
Ramu Narasingaramunarasinga.hashnode.dev·Jul 23, 2024tsup to bundle your TypeScript packageAre you building a TypeScript library but not sure how to bundle it? I recommend tsup. Below are the factors I consider:1. It has over 1M downloads per week on NPM registry2. tsup repository has 8.6k stars with active maintenance.3. Well documented.4...DiscussTypeScript
Khushal Sharmalogan1x.hashnode.dev·Jun 20, 2024How frontend dev tooling is changing.Hi folks,It's been a long time since I wrote anything technical, but I encountered an interesting thing today while tinkering around. I was trying to make a react project from scratch, So I asked ChatGPT that I have a project setup with npm init cofi...Discuss·10 likes·31 readsBundler
Mahesh Vagicherlablog.maheshvagicherla.dev·Jan 22, 2024Building SSR Application with Vite.Before diving, if you don't know what a SSR application is let me give you a brief about it. SSR is the method of generating HTML at server side instead of in client browser (CSR). With growing list of frameworks we just are building applications whe...Discuss·13 likes·183 readsReact