
Fresh Web Dev Highlights
Hello readers!
As we do every month, we've gathered a selection of articles from the world of web tech that we think are worth sharing.
Learn how to benefit from CSS Container Queries, get insights into React 19, find out how to secure your applications, and much more.
Happy reading!
React 19 - stable version
With all the hype around LLMs, one might have overlooked that the React team released a stable version of React 19 back in December after months of testing. Compared to the release candidate (RC) from April, it includes several improvements, such as a more performant suspending static method for pre-rendering as a stream or string.
Check out the extensive release notes to learn about new features and hooks such as useOptimitic for optimistic updates, useActionState, useFormStatus, and much more!
Next.js team released a new minor version 15.1 to incorporate the stable version of React 19—worth checking out if you haven’t already.
Node.js adds Typescript support
With the release of Node.js 23.6.0, the experimental flag was removed and Typescript support is now official. No configuration is required to run TS files. Node.js internally uses a Rust-based SWC compiler to remove the Typescript specific syntax and produce clean JavaScript files. However, type checking is not performed in this process—you’ll need to handle that separately.
Check out the article for more details.
Deep dive into CSS Container Queries
In our previous newsletter, we shared Josh W. Comeau’s introduction to CSS Container Queries. Now, he has released a follow-up with even deeper insights and plenty of practical examples. Definitely worth a read!
Reducing Time to the First Byte of the websites
Time to First Byte (TTFB) refers to the time it takes to start loading the next page. It includes DNS resolution, redirects, establishing a secure connection, and the server sending the content.
Read the blog post to understand TTFB in more detail and learn how to reduce it.
Securing Web applications with OWASP
Securing web applications is a complex task and the OWASP (Open Worldwide Application Security Project) foundation is one of the well-known sources of security guides and hints. Read the article to get their TOP 10 recommendations and practical examples.