tech/webdev magazine

June 13, 2025

The Underestimated Power of Hot Spots and Notes in EventStorming

Friday, June 13, 2025 Teklinks

I've been facilitating the EventStorming sessions for years now, and something keeps catching my attention. While teams naturally focus on mapping out those orange event sticky notes (the backbone of any EventStorming session), they often underestimate the power of two critical elements: Hot Spots and Notes.

Full article

How Imports Work in RSC

Friday, June 13, 2025 Teklinks

React Server Components (RSC) is a programming paradigm that lets you express a client/server application as a single program spanning over two environments. Concretely, RSC extends the module system (the import and export keywords) with novel semantics that let the developer control the frontend/backend split.

Full article

Search Params Are State

Friday, June 13, 2025 Teklinks

Search params have been historically treated like second-class state. They're global, serializable, and shareable — but in most apps, they’re still hacked together with string parsing, loose conventions, and brittle utils. This works, but it’s manual and repetitive.

Full article

June 12, 2025

How we built our AI code review agent for IDEs

Thursday, June 12, 2025 Teklinks

At CodeRabbit, we recently shipped our free VS Code extension, bringing context-rich AI-powered code reviews directly into your editor. Our engineering philosophy has always been simple: we build tools that fit seamlessly into your existing workflow. While developers have told us our comprehensive PR reviews have helped them ship faster and keep more bugs from production, many also asked for IDE reviews to help check code prior to sending a pull request.

Full article

Is It JavaScript?

Thursday, June 12, 2025 Teklinks

“It’s Just JavaScript!” is probably a phrase you’ve heard before. I’ve used it myself a number of times.It gets thrown around a lot, often to imply that a particular project is approachable because it can be achieved writing the same, ubiquitous, standardized scripting language we all know and love: JavaScript.

Full article

Announcing Vitest 3.2

Thursday, June 12, 2025 Teklinks

Vitest 3.2 focuses on improvements to Browser Mode and TypeScript support. This release also includes some new useful methods, config options and deprecates the workspace config in favour of projects. In an effort to simplify the configuration, the team decided to deprecate the separate vitest.

Full article

June 9, 2025

Adopting Docs-as-Code at Pinterest

Monday, June 09, 2025 Teklinks

Technical documentation is the backbone of any successful engineering team, yet at Pinterest, it has consistently been a source of frustration. Despite using popular web-based wiki tools and experimenting with well-known alternative applications, our internal developer surveys reveal that documentation remains a top pain point.

Full article

June 8, 2025

A Look Into the Secrets of MCP: The New Secret Leak Source

Sunday, June 08, 2025 Teklinks

MCP rapidly enhances AI capabilities but introduces security challenges through its distributed architecture. Especially, the distributed nature of MCP requires a lot of NHIs and their secrets. Our research shows that MCP is a new source of leaks that already discloses real-world secrets.

Full article

Nine Emerging Developer Patterns for the AI Era

Sunday, June 08, 2025 Teklinks

Developers are moving past AI as just tooling and starting to treat it as a new foundation for how software gets built. Many of the core concepts we’ve taken for granted — version control, templates, documentation, even the idea of a user — are being rethought in light of agent-driven workflows.

Full article

Wake up, Remix!

Sunday, June 08, 2025 Teklinks

At React Conf last summer we announced that Remix was going to "take a nap". Remix v2 had become such a thin wrapper around React Router that an artificial separation developed between the two projects.

Full article

June 5, 2025

Next.js Server Actions are public-facing API endpoints

Thursday, June 05, 2025 Teklinks

Thanks to Server Actions, developers are able to execute server-side code on user interaction, without having to create an API endpoint themselves. I’ve emphasised “themselves”, because server actions are a syntactic sugar for API endpoints, which to my surprise, is not that well-known amongst some professionals in the industry.

Full article

June 4, 2025

Human coders are still better than LLMs

Wednesday, June 04, 2025 Teklinks

This is a short story of how humans are still so much more capable of LLMs. Note that I'm not anti-AI or alike, you know it if you know me / follow me somewhere. I use LLMs routinely, like I did today, when I want to test my ideas, for code reviews, to understand if there are better approaches than what I had in mind, to explore stuff at the limit of my expertise, and so forth (I wrote a blog post about coding with LLMs almost two years..

Full article

Announcing Rolldown-Vite

Wednesday, June 04, 2025 Teklinks

TL;DR: Try out the Rolldown-powered Vite today by using the rolldown-vite package instead of the default vite package. It is a drop-in replacement, as Rolldown will become the default bundler for Vite in the future. Switching should reduce your build time, especially for larger projects.

Full article

June 3, 2025

The Beauty of TanStack Router

Tuesday, June 03, 2025 Teklinks

Choosing a Router is probably one of the most important architectural decisions we have to make. The router isn't just another dependency in node_modules - it's what holds your whole application together.

Full article

Manual Work is a Bug

Tuesday, June 03, 2025 Teklinks

A.B.A: always be automating Thomas A. Limoncelli Let me tell you about two systems administrators I know. Both were overloaded, busy IT engineers. Both had many repetitive tasks to do. Both wanted to automate these tasks.

Full article