My Learning Curve

Feed

Robin Wieruch

Latest entries from Robin Wieruch.

Source: https://www.robinwieruch.de/

Authorization in Next.js

Mar 25, 2025

Learn about authorization in Next.js when using React Server Components, Server Actions, and Next's App Router ...

React Trends in 2025

Mar 18, 2025

React Trends in 2025 which should be on your watchlist. A walkthrough of the state of React ...

How to learn React in 2025

Feb 25, 2025

Learning React in 2025 as a library or framework is not an easy decision. Whether to learn React with Next.js as a framework ...

Simple Interactive CLI App with Node.js

Feb 24, 2025

Learn how to build a simple interactive CLI app with Node.js and TypeScript. Create a chat interface that reads user input and responds interactively ...

TypeScript in a Node.js Project

Feb 18, 2025

Learn how to set up a TypeScript Node.js project from scratch with this step-by-step guide. Configure TypeScript, install dependencies, manage environment variables, and streamline...

React Libraries for 2026

Feb 17, 2025

A curated list of React libraries for 2026 with recommendations for state, data fetching, routing, styling, UI, forms, testing, auth, and hosting.

Monorepos in JavaScript & TypeScript

Feb 3, 2025

A tutorial how to use a monorepo architecture in frontend JavaScript and TypeScript with tools like npm/yarn/pnpm workspaces, Turborepo/NX/Lerna, Git Submodules, ...

Mac Setup for Web Development [2026]

Jan 7, 2025

My complete Mac setup for web development in 2026: macOS preferences, Homebrew, iTerm2, Oh My Zsh, VS Code, Git, SSH, and Node.js with NVM.

React Router 7 Lazy Loading

Jan 6, 2025

How to: React Router 7 Lazy Loading: code-splitting at route level helps you lazy-load just the things that are needed by the user, which dramatically improves the performance ...

React Router 7: Authentication

Jan 6, 2025

You will learn how to use authentication in React Router 7 by authenticating a user by login (sign in) and logout (sign out) ...

React Router 7: Redirect

Jan 6, 2025

How to: Redirect in React Router 7 by using the declarative Navigate component or the programmatic useNavigate Hook ...

React Router 7 Tutorial

Jan 6, 2025

React Router 7 tutorial: setup, hooks, nested routes, dynamic routes, programmatic navigation, active links, layout routes, index routes and more. A step by step React tutorial for...

React Function Components by Example [2026]

Dec 23, 2024

Learn React Function Components (also called Functional Components) by example: props, state with Hooks, event handlers, refs, TypeScript, and more for modern React.

React Form Validation

Dec 16, 2024

How to validate forms in React without a form library on the server and the client ...

React Tech Stack [2025]

Dec 9, 2024

Popular React Tech Stack for Full-Stack Applications in 2025 to create your product (i.e. SaaS) ...

React and FormData

Nov 11, 2024

Learn how to handle FormData in React when submitting it with a (Server) Action to the server ...

How to Drag and Drop in React

Oct 10, 2024

A tutorial about using Drag and Drop in React by example for a vertical list (later horizontal list) with @hello-pangea/dnd as DnD library ...

Types of React Components [2024]

Sep 30, 2024

There are many types of React Components that make it difficult for React beginners. This tutorial goes through each React Component Type by example ...