Fareez Ahamed

Full Stack Developer | Javascript, Laravel, SAP ABAP

Tag: React (6)

Angular's Composability: A Deeper Dive into Why It Outshines React

Oct 31, 2023

React is usually praised for component composition over other frameworks. But in reality Angular’s composability is hard to beat. The main reason is Directives. Read more...

Draggable Widget Layouts Using React.js

Jun 19, 2022

It is a common expectation for dashboards to have draggable widgets. In this article, we are going to see how we can make a draggable layout without using any libraries. Read more...

useImperativeHandle: A New Perspective in Making React Components

Jun 8, 2022

useImperativeHandle hook is an unusual hook in React, to an extent that it is discouraged to use in the React’s official documentation. Read more...

Testing React Components Which Has Fetch or Axios API Call

Jan 26, 2022

Imagine, you are having a component which is making a REST API call when it is mounted, to fetch data and display it. Read more...

Embedding a React Application in Go Binary

Mar 22, 2021

Go 1.16 has come out with a feature which I waited for quite some time. With Embed we will be able to add static files into the go binary at build time. Read more...

Custom React Hook to Trigger Callback when Component Enters Screen

Mar 8, 2020

Sometimes we would like to postpone loading data in a component till it is actually visible in the viewport. This is handy in applications where we have lots of tables with data that should be loaded only when we scroll down. Read more...