Blog
My Blog
React 19: What’s New and How to Upgrade Your App
React has been a go-to JavaScript library for building user interfaces, and with its continuous evolution, it always brings in fresh updates and improvements to make our development process smoother. With the stable release of React v19, many exciting features have...
How to Upload File and Preview it Using Docx-Preview in React
Overview of the Project How to Upload File and Preview it Using Docx-Preview in React Our goal is to create a form where users can upload a DOCX file. After the upload, the contents of the DOCX file will be previewed in a scrollable area. This feature is especially...
What is Botpress and How to Integrate Botpress in a ReactJS Application
What is Botpress? Botpress is a developer-friendly open-source platform used for building conversational interfaces, like chatbots, voice assistants, and interactive systems. It is built on top of Node.js and provides a visual interface for bot design, allowing...
How to Create Custom Hooks in React: Simplified Guide with Examples
Heard about custom hooks but not sure how to harness their power? In this blog post, we’ll delve into the wonderful world of custom hooks in React, breaking down what they are, how to create them, and why they’re a game-changer for your projects. What Are Custom...
Understanding Layouts in React
If you're someone who works with React, you might think you know what a layout is. But, do you really? React, a popular JavaScript library for building user interfaces, employs the concept of layouts to organize and structure web applications. Despite its widespread...
useSyncExternalStore React API
You might have heard about a new tool called useSyncExternalStore() in React 18. It helps connect your React app to outside data sources. Usually, it's used by fancy internal tools like Redux to manage state. The official documentation explains that...