Harshit BansalforTechStack Talestechstack-tales.hashnode.dev·Dec 8, 2024Igniting a React AppMostly large-scale frontend apps which we see in today’s world are developed using React, but react solely doesn't makes those large scale applications. But there are a lot of other libraries and packages are used along with React to make a full-fled...React JSparcel
Shibani Dascodeloop.hashnode.dev·Nov 23, 2024React's Hidden Weapon : How Bundlers Slash HTTP RequestsWell do you know how exactly they reduce HTTP requests ? Below are a few questions that arise when someone is building their React concepts from scratch. Is there a HTTP request everytime browser needs to access JavaScript/CSS file ? Let’s say brow...1 like·54 readsThe React LabBundler
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...Webpackwebpack
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...bunchee
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...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, ...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...ERC-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...Bundler
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...Bundler
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...TypeScript