Hidayt Rahman

Hidayt Rahman @hidaytrahman

About: I am passionate programmer and love travelling and photography

Location:
Delhi, India
Joined:
Jun 27, 2020

Hidayt Rahman
articles - 31 total

A Modern Alternative to Create React App

Introducing template-rtw: A Modern Alternative to Create React App With the deprecation of...

Learn More 1 2Mar 14

Serve localhost with custom domain

We are going to use your preferred custom domain in local instead of the dull localhost URL on our...

Learn More 11 0Feb 10 '24

Prevent app crashes with ExpressJS

Most annoying experience of any app when it get crashed so basically it blocks the entire operation...

Learn More 0 0Sep 14 '23

Manual Trigger on Github action - #2

Intro In the Github action session, In this article we will be learning about Manual...

Learn More 0 0Jul 3 '23

Greet to the new PR and issue creator in Github Action - #1

Github action greeting Github action is the great tool to automate the manual stuff for...

Learn More 0 0May 25 '23

Handle protected page routes in NextJS using NextAuth

For this article, we will use the middleware technique. To use this functionality, you must have at...

Learn More 6 1Apr 25 '23

Top 9 JavaScript Flavours

1. TypeScript TypeScript is a strongly typed programming language that builds on...

Learn More 4 0Mar 1 '23

Outstanding Monorepo Tools

A monorepo is a code repository with version control that houses several projects. Although they...

Learn More 18 0Feb 16 '23

Deploy Vite React App on Github

Follow two step to publish Step: 1 Configure repo in vite.config.js Set the base in...

Learn More 14 4Feb 7 '23

Rendering Frameworks JavaScript

Next.js Next.js is an open-source web development framework created by Vercel enabling...

Learn More 0 0Jan 31 '23

flat array from the multi dimensional zig-zag array

To flatten a multi-dimensional zig-zag array in JavaScript, you can use a combination of loops and...

Learn More 0 0Dec 29 '22

Strict object type using Proxy in JavaScript

Javascript object field can be overwrited by any data types. Can we strict it? yes of course we can...

Learn More 1 0Dec 16 '22

15 Javascript Browser APIs

The features provided by the browser. 1. Service Workers Service workers essentially act...

Learn More 10 1Dec 14 '22

React must have basic setup

Installation npx create-react-app appName Enter fullscreen mode Exit...

Learn More 2 0Nov 9 '22

Absolute path in React

Why we need Absolute path in the App? Problems Working on applications without spending...

Learn More 4 0Sep 9 '22

FE React Course Content

What's in this course? Basic JavaScript (Optional) A thorough introduction to React.js (What is it...

Learn More 0 0Sep 5 '22

Convert any type into boolean — JS

!! it’s used to convert something to boolean Converts Object to boolean. If it was falsy (e.g. 0,...

Learn More 7 0Jun 20 '22

Add SVGs with the CSS background image

SVG supports animation, transparency, gradients, and is easily scalable without losing quality. This...

Learn More 5 0Oct 21 '21

Popular JavaScript Interview Questions

Basic Questions What is JavaScript Is JavaScript a multithreaded language? A Is...

Learn More 9 0Oct 18 '21

Small Project Ideas

Beginner 1. Todo App Must have functionality Create a todo with todo text and...

Learn More 6 0Sep 23 '21

Make Object readOnly by using Object.freeze()

The Object.freeze() method freezes an object. A frozen object can no longer be changed; freezing an...

Learn More 3 0Aug 18 '21

Roadmap - Zero to Hero in JavaScript

JavaScript is a programming language used both on the client-side and server-side that allows you to...

Learn More 11 0Aug 8 '21

JavaScript Array Methods Cheat Sheet

Top popular JavaScript array methods. concat() ['😉', '👊'].concat('😩') // Output:...

Learn More 8 0Jul 25 '21

CRUD Operation with Array in JavaScript

Create Create an array. It will contain programming languages. const...

Learn More 4 0Jul 14 '21

Deploy a React App to GitHub Pages

Let's deploy react application on GitHub by using GitHub Pages. Prerequisites You need to...

Learn More 7 0Jul 6 '21

Handling Browser Storage with React Hooks

This is a very common issue when you need to store data in the browser by using any methods...

Learn More 3 0Jul 3 '21

Customize GitHub Profile with Decent theme

Github introduced a new feature, Where you can add personal information about yourself in your bio,...

Learn More 6 0Jun 30 '21

Full Stack Developer Roadmap 2021

Most of the newcomers are planning to go for full-stack development. What is a full-stack...

Learn More 254 6Jun 25 '21

9 Array Methods Every JavaScript Developer Should Know

Why Array? Objects allow you to store keyed collections of values. But quite often we find that we...

Learn More 7 0Jun 19 '21

Object destructuring in JavaScript

Object destructuring is a useful JavaScript feature to extract properties from objects and bind...

Learn More 84 8Jun 15 '21