← All articles

Tag

React

10 posts

Svelte 5 vs React in 2026: An Honest Comparison After Shipping Both

Svelte 5 introduced runes and turned the reactivity question into a real debate again. I built production apps with both Svelte 5 and React 19 this year. Here is the honest comparison: bundle size, the runes vs signals model, the TypeScript friction nobody mentions, hiring, and when each one is actually the right call.

The React Compiler Is Here: Say Goodbye to useMemo and useCallback

React Compiler hit v1.0 in late 2025 and it changes how we think about React performance. No more manually wrapping functions in useCallback or values in useMemo. The compiler handles it. Here is what actually changed and how to start using it today.

Cloudflare Vinext: The AI-Built Next.js Replacement That Changes Everything

Cloudflare built a drop-in Next.js replacement called vinext in under a week, using AI to write nearly every line of code. It builds 4.4x faster, ships 57% smaller bundles, and deploys to Cloudflare Workers with one command. But the most important story here is not the framework itself.

Lynx vs React Native vs Flutter: TikTok’s New Framework in Perspective

Cross-platform mobile development in 2025 has a new contender. ByteDance (TikTok’s parent company) recently open-sourced Lynx, joining Meta’s React Native and Google’s Flutter as frameworks for building iOS and Android apps from one codebase (Cross-P...

What’s New in Next.js 15: A Comprehensive Overview

As web development evolves, frameworks like Next.js continuously innovate to meet the growing needs of developers and businesses alike. The release of Next.js 15 brings exciting new features, performance optimizations, and developer-friendly updates ...

A Deep Dive into React 19: New Features, Improvements, and Best Practices

React 19, released in December 2024, marks a significant step forward in modern web development. Packed with innovative features, React 19 is designed to make web applications faster, easier to maintain, and more powerful. This article explores the m...

NextJS for Web Apps: A Technical Perspective

Why NextJS? NextJS has gained significant popularity for its hybrid approach to web development, blending SSR (server-side rendering) and SSG (static site generation) with client-side rendering. This flexibility makes it an attractive choice for deve...

I Tried Zustand… and It’s Awesome!

Hi, guys! A few days ago, I started rewriting the apps from my portfolio. For now, I have only rewritten one, but the others will follow soon. You might wonder why I’m doing that. Well, there are a couple of reasons. The first reason is that I love t...

ChatApp V2: The Next Generation of Chatting

ChatApp V2 is the upgraded version of KSChat, a chat application that offers a variety of features for users to enjoy. With ChatApp V2, users can easily create an account, log in and out, view their own and other users’ profiles, customize their prof...

What I learned from building a chat project with sockets.io and React

A few days ago I’ve built a React application with socket.io. It’s a chat app. *Sidenote: The repo and youtube video will be at the down of the article. Now, when you’ll see it you may ask a few questions like, “why didn’t use any DB or firebase?” or...