PLATFORM
  • Tails

    Create websites with TailwindCSS

  • Wave

    Start building the next great SAAS

  • Pines

    Alpine & Tailwind UI Library

  • Auth

    Plug'n Play Authentication for Laravel

  • Designer comingsoon

    Create website designs with AI

  • DevBlog comingsoon

    Blog platform for developers

  • Static

    Build a simple static website

  • SaaS Adventure

    21-day program to build a SAAS

Raunaq

@chauhanraunaq878

420 Points 5 Followers

6 Posts

0 Answers

Front-End Developer

How to fetch a pull request locally and test it out before merging

## Introduction In this post, we'll learn how to fetch a pull request locally and test it out before merging it into our project repository. We can also make changes to it if required and p...

Understanding the React useRef() Hook

## Introduction In this post, we'll look at the `useRef()` hook that provides a way to directly access a DOM node. We'll also look at scenarios where we can use the value of the reference re...

Command Line Job Search Application using Node.js

### Introduction In this post, we'll build a command line job search application using **[Node](https://nodejs.org/en/)**. It's a JavaScript runtime that allows the JavaScript code to run o...

Understanding the React useEffect() Hook

## Introduction In the [previous post](https://devdojo.com/chauhanraunaq878/understanding-the-react-usestate-hook), we looked at the [useState()](https://devdojo.com/chauhanraunaq878/unders...

Understanding the React useState() Hook

## Introduction [Hooks](https://reactjs.org/docs/hooks-intro.html) were introduced in React **v16.8.0**. Prior to that, if we had written a functional component and wanted to add `state` or...

Git stash - Store your uncommitted changes aside to work on it later

## Introduction In this post, we'll be looking at the `git stash` command and its usage. We come across situations in our development work where we are in the middle of a task with quite a...