Fernando Bezerrafersales.hashnode.dev·16 hours agoFormatação Automática de Código com Laravel Pint: Hooks de Pre-commitO Pint é uma ferramenta de correção de estilo de código PHP criada especificamente para trabalhar com Laravel. Neste artigo, vamos explorar como o Pint funciona e como automatizar sua execução antes ou depois de você realizar commits no repositório. ...Hacks LaravelLaravel
Sahana S Acharyareact-diaries.hashnode.dev·Dec 22, 2024Building a Password Generator in React: Step-by-Step Guide 💡✨Introduction to the Password Generator Project 🛠️This project is a great way to practice React concepts like state management, memoization, DOM manipulation, and more. With a clean user interface and powerful functionality, you can generate secure p...useState
Muhammad Razareact19hooks.hashnode.dev·Dec 19, 2024The Power of New Hooks in React 19React has always been at the forefront of modern web development, and with the release of React 19, it continues to set new benchmarks. Among the highlights of this update, the enhancements and additions to hooks are a game-changer for developers. In...React
Lilian Cariourasengansec.hashnode.dev·Dec 19, 2024Uniswap V4 HooksYep one more article on uniV4 hooks, but this one is different (or maybe not) Introduction UniV3 vs UniV4 : Uniswap v3 introduced concentrated liquidity features that allow liquidity providers to choose price ranges to earn higher fees from their c...uniswapV4
Harshit BansalforTechStack Talestechstack-tales.hashnode.dev·Dec 18, 2024Hooks in ReactWhat are React Hooks? React Hooks are special functions introduced in React 16.8 that allow you to use React features like state and lifecycle methods in functional components. Before hooks, these features were only available in class components. Hoo...React JSMERN Stack
Vitthal Korvanvitthal-korvan.hashnode.dev·Dec 11, 2024React JS - PracticalsCreate an application in ReactJS to implement the component life cycle Program: // 1. Component Life Cycle (Class Component) import React, { Component } from 'react'; class LifeCycleDemo extends Component { constructor(props) { super(props)...232 readsReact-MasteryReact
Chandan kumardeveloperchandan.hashnode.dev·Dec 11, 2024Lifecycle Hooks in AngularAngular’s lifecycle hooks are methods in Angular components and directives that allow you to tap into key moments in the lifecycle of a component or directive. Below is a description of the main lifecycle hooks with their execution order and a grap...lifecycle-hooks
Abenezer Teshomeabeni.hashnode.dev·Nov 29, 2024How to Optimize Your App with useMemo and useCallbackIn the competitive world of web development, performance can make or break an application. As user experiences become more dynamic, the efficiency of a React app directly impacts both the speed and the perceived quality of the interface. This is wher...React
Vishal Singhthevishingh-states-hooks.hashnode.dev·Nov 29, 2024Understanding State and the useState Hook in React 🚀React is a powerful JavaScript library for building user interfaces, and state is important for making these interfaces dynamic and interactive. ⚛️ The useState hook is one of the most commonly used hooks to manage state in React functional component...React
Sahana S Acharyareact-diaries.hashnode.dev·Nov 19, 2024React State Management with useState: A Beginner’s GuideReact has revolutionized the way we build user interfaces, and one of its most powerful features is Hooks. Hooks let you use React features like state and lifecycle methods without writing a class. Today, I'll share how I used the useState Hook to bu...React