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
Hassanigocoding.hashnode.dev·Nov 18, 2024🚀 Transpiling and Polyfilling: Making Your JavaScript Universally Understood🚀 Transpiling and Polyfilling Hello, fellow code wranglers and JavaScript adventurers! 👋 Today, we’re diving into two superheroes of modern web development: Transpiling and Polyfilling. These champions ensure your cutting-edge JavaScript works seam...2 likesCore-js
Payal Porwalcodeswithpayal.hashnode.dev·Oct 4, 2024How to Create a React Project: Tools, Comparisons, and More!React is a powerful library for building modern web applications, and there are several ways to kickstart a React project. Traditionally, many developers used npx create-react-app, but newer tools like Vite and Parcel offer faster and more efficient ...1 like·76 readsReact
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
Smit Desaismitd.hashnode.dev·Apr 17, 2024Optimizing your Large Scale React ApplicationSingle Responsibility Principle Restaurant Card has a single responsibility to display Restaurant Cards on web-pageHeader Component has a single responsibility to display header on web-page So similarly for each Component that we create, we should gi...43 readslarge scale react application
Gautam VajaforCodeParrot 10x Dev10xdev.codeparrot.ai·Apr 9, 2024Build your Web Applications Faster with Modern Build ToolsWhat is Building? "Building" refers to the process of transforming and bundling your source code into a format that browsers can efficiently interpret and execute. Transpiling: Converting modern JavaScript (ES6+) or other languages (like TypeScript)...11 likes·496 readsfrontend
Smit Desaismitd.hashnode.dev·Apr 3, 2024Laying the Foundation of React, JSX & BabelAs we saw we can write React with core React (createElement, etc)But it becomes very complicated as and when the HTML structure needs to be more and more nested. So to make our lives easier Facebook Developers came up with JSX. (React is possible wi...10 likes·45 readsReact
Aditya Pachauriadityapachauri.hashnode.dev·Dec 2, 2023Parcel: A Bundler for Contemporary Web DevelopmentHow does Parcel simplify the web development workflow and enhance performance compared to traditional bundlers? Before knowing the answer to this question, it is important to know... What is a Parcel bundler? The parcel is a zero-configuration bundle...parcel
Yashwanth somayajulablog.yashone7.space·Sep 9, 2023Introduction to Server Side Rendering with Parcel 🚀Hey folks, when building web applications, we have heard about various rendering patterns, namely client-side rendering and server-side rendering, static rendering, Incremental Static Regeneration and the newer approaches like island pattern, resumab...84 readsReact
Zahid Rahmanprogrammer47.hashnode.dev·Aug 29, 2023The difference between npx create-react-app and npm create vite@latestTitle: Exploring Contrasts: npx create-react-app vs. npm create vite@latest Introduction: In the realm of modern web development, tools and frameworks continue to evolve, offering developers new and improved ways to build efficient and captivating ap...38 readsReact