ZGenius Matondozgeniuscoders.hashnode.dev·4 hours agoLes technologies web à apprendre en 2025Introduction Salut les devs ! Bienvenue dans ce nouveau tuto où on va parler des technologies web à apprendre absolument en 2025. Dans cette vidéo, on va passer en revue les principales technologies, classées par domaine, pour vous aider à choisir ce...Discuss·10 likes#apprendre le code
Vasant Mestryvasantmestry.hashnode.dev·Nov 28, 2024Building a React Counter: A Beginner's GuideHello guy’s, today we’re going to create a simple counter application in React. This application will increment the count by one. Prerequisite Familiarity with JS React Fundamentals (Components , useState and useEffect). Installation It is super...Discuss·1 likeReact
Durantedurante.hashnode.dev·Nov 28, 2024Why APIs Are the Unsung Heroes of App DevelopmentLet’s talk about building an app—whether it’s a virtual office or a self-care app. One question always looms in the background: When are you going to create the API? It’s not the most exciting part of development, I know. APIs often don’t get the lov...DiscussAPIs
Vishal Singhthevishingh-react.hashnode.dev·Nov 27, 2024React Basics An Easy Introduction for Newcomers.🧐When it comes to building modern, dynamic, and responsive web applications, React has become the go-to JavaScript library for developers around the globe 🌍. Created by Facebook, React focuses on creating user interfaces (UI) through reusable compone...Discuss·1 likeWhat is React JS
Ashikur Rahmanashikonweb.hashnode.dev·Nov 27, 2024How Browsers Work: What Happens When You Type a URL?You might think you already know how a browser works: type a URL, hit enter, the browser makes an HTTP request, the server responds, and the website loads—simple, right? Not quite! Behind the scenes, your browser is doing far more. It’s performing co...Discuss·70 readsBrowsers
syncfusionsyncfusion-blogs.hashnode.dev·Nov 26, 2024TypeScript Utility Types: A Complete GuideTL;DR: TypeScript utility types are prebuilt functions that transform existing types, making your code cleaner and easier to maintain. This article explains essential utility types with real-world examples, including how to update user profiles, mana...Discussutility types
Saurav Maheshwarixauravww.hashnode.dev·Nov 24, 2024Understanding the Key Differences Between HTML and JSXIntroduction: The Illusion of HTML in JSX When you first see JSX, it looks like HTML. But here’s the trap: JSX is not HTML. Behind the scenes, JSX is JavaScript. // JSX (Looks like HTML) const element = <h1>Hello, world!</h1>; But in reality, it’s t...DiscussReactjs/NextjsReact
syncfusionsyncfusion-blogs.hashnode.dev·Nov 21, 2024What’s New in Angular 19?TL;DR: Angular 19 makes standalone components the default, streamlining development and enabling a strict mode for enforcement. It also introduces incremental hydration for performance and better state management using linkedSignal. Angular 19 brings...DiscussAngular 19
Frank Lamfranklam.hashnode.dev·Nov 20, 2024CSS New Align-Content for Block ElementsIn this post, we’ll explore what the new align-content property is, how it works with block elements, and practical use cases where it can simplify your CSS. What is align-content? The align-content property in CSS controls the alignment of multiple ...DiscussCSS
George Daskalakisblog.geodask.com·Nov 19, 2024Semantic Differences and Structural SimilaritiesIn modern front-end development, we strive to create reusable components to save time and reduce duplication. But if we prioritize reusability too much, we risk sacrificing clarity and flexibility. A common pitfall is to build overly generic componen...Discuss·38 readsFrontend Development