AnkurforAtomxelblog.atomxel.com·Aug 26, 2024Making Your React App MultilingualInternationalised software supports the languages and cultural customs of people throughout the world. The Web reaches all parts of the world. Internationalised web apps provide a great user experience for people everywhere. Localised software adapts...Discuss·2 likesatomxel
AnkurforAtomxelblog.atomxel.com·Aug 16, 2024Simplifying Git and GitHub for DevelopersAbout Git Git is a Version Control System that intelligently tracks changes in files. Git is particularly useful when you and a group of people are all making changes to the same files at the same time. A version control system, or VCS, tracks the hi...Discuss·1 like·43 readsatomxel
AnkurforAtomxelblog.atomxel.com·Aug 14, 2024You Call Yourself a Web Developer and Don't Use Chrome Dev Tools?Chrome Dev Tools is a powerful tool for web developer built into the Google Chrome browser. Chrome Dev Tools is indispensable tool that lets you inspect, edit and debug your code. It helps web developer to build better website and faster. You can acc...Discuss·3 likes·39 readsatomxel
AnkurforAtomxelblog.atomxel.com·Aug 1, 2024Top UI Frameworks of React in 2024React is the most commonly used Javascript library in 2024 for front-end development. React is so popular that many UI libraries have built-in custom react components to facilitate easy integration. React UI framework provides a wide range of built i...Discuss·2 likes·57 readsatomxel
Piyush NanwaniforAtomxelblog.atomxel.com·Mar 27, 2024The React Hooks you need to knowIn this blog, we'll cover fundamental hooks like useState, useEffect, useRef, and useContext. Then we will talk about custom hooks. React Hooks useState The useState hook allows functional components to manage state. Let's look at a simple example: i...Discuss·1 like·61 readsReact
Piyush NanwaniforAtomxelblog.atomxel.com·Mar 20, 2024Mastering State Management in ReactIn this blog, we'll explore various state management strategies, covering prop drilling, the useContext hook, useReducer, and popular state management libraries. Prop Drilling Prop drilling refers to the process of passing down props through multiple...Discuss·62 readsreact js
Piyush NanwaniforAtomxelblog.atomxel.com·Mar 16, 2024React Components: Function-Based vs Class-BasedChoosing function based components or class based components is a common question a lot of us face when starting your React journey. In this blog, we will talk about both of these approaches and guide you along with examples. Function-Based Component...Discuss·75 readsReact
Piyush NanwaniforAtomxelblog.atomxel.com·Mar 9, 2024Understanding React Concepts: State and PropReact, with its declarative and component-based approach, relies on key concepts like state and props to manage and pass data. This blog aims to explain the differences between state and props with examples. State State is the internal handling of da...Discuss·34 readsatomxel
Piyush NanwaniforAtomxelblog.atomxel.com·Mar 4, 2024React Ecosystem OverviewI recall the early days of my journey with React. Upon completing a course or a book, I would feel a sense of accomplishment, thinking I had mastered React, only to discover there were still unknown aspects. This cycle repeated itself - learning, hap...Discuss·70 readsReact
Piyush NanwaniforAtomxelblog.atomxel.com·Mar 1, 2024Components: The building blocks in ReactIntroduction React, a JavaScript library for building user interfaces, revolves around the concept of components. A component is a modular and reusable piece of code that encapsulates a specific functionality or UI element. Understanding components i...DiscussReact