Published onOctober 17, 2021Bundle a React library with ParcelreactparcelCreate a React library and bundle it with the new Parcel v2. Parts of Parcel are rewritten in Rust and that means it is now faster than ever
Published onAugust 4, 2021Understand how styled-components works by creating a clonereactFirst article in a guide on how to build your own styled-components clone. Understand why it is necessary and how to start working on your own library
Published onJuly 28, 2021The const keyword does not create immutable variablesreactjavascriptThe const keyword creates a read-only reference to a value. It does not mean that the value itself is immutable. It is just that the variable identifier cannot be reassigned
Published onJuly 14, 2021Cut down your Webpack build times by half with esbuild-loaderwebpackreactSpeed up your Webpack builds by leveraging esbuild, a tool written in Go that promises faster build times even for large codebases
Published onSeptember 26, 2020Hinglish to Hindi Typing - React Transliterate ComponentreactType in Hindi by using a standard English keyboard. A brief explanation of the project along with usage and Github links
Published onSeptember 17, 2020React Internals (Part 3) - Fiber ArchitecturereactAn article explaining how Reacts latest Fiber architecture works and speeds up your website
Published onAugust 29, 2020React Internals (Part 2) - Reconciliation algorithm until React 15reactUnderstand what is reconcilliation and the reconcilliation algorithm used by React up until React 15
Published onAugust 24, 2020React Internals (Part 1) - The Basic Concepts and the PrerequisitesreactAn explainer of basic terminology used in React internally and a prerequisite to understanding more advanced React concepts
Published onAugust 23, 2020Reasons why I love using Chakra UI for ReactreactChakra UI is a simple, modular and accessible component library that gives you all the building blocks you need to build your React applications
Published onJune 18, 2020Using Ant Design with NextJS (custom variables for Ant Design)reactnextjsA guide on how to use Ant Design in NextJS with custom variables
Published onMay 26, 2020React Context API + useReducer() = ReduxreactreduxhooksReplace Redux with React Context and provide an API similar to Redux throughout your app
Published onNovember 5, 2019Using React with Electron - For Beginners!reactelectronI created this boilerplate after working on electron for one of my own apps