27 news for new version
October 2024
An Early Glimpse of TanStack Start
A quick overview of the new TanStack Start, a meta framework based on React, with server actions, suspense, router, and more.
Currently in alpha, but i already feel this will be my next preferred toolkit for 2025.
September 2024
First look at Astro 5 beta
Get a preview of Astro new features in its future V5 version. Content layers, server island, typed env vars.. Its all there.
August 2024
Server Islands are really cool
With this new feature, the Astro team breaks again the frontier between CSR and SSR. Server Island allows you to dynamically fetch portions of you page directly on the server. Discover this breakthrough with a comparison of the Edge feature from Vercel.
August 2024
The "Wrong Way" To Use React
Great explanation on the new react 19 pattern "render on fetch" vs the actual "fetch on render".
July 2024
Node FINALLY Supports TypeScript
After 15 years, Node officially announce it will natively supports typescript. It was time..
July 2024
TypeScript's Next Release Is Wild
A quick overview on the new 5.6 typescript release and it looks pretty promising.
June 2024
Astro 4.10
Astro evolves pretty fast, and in this new release, we have performances improving at build, a new env module to manage your variables with a zod schema, and container api who allows to export components into strings. You can now, for exemple, use react component directly in a elixir page with an island. Very useful for non javascript developers.
June 2024
Figma AI is Here! + Other Amazing Updates – Figma Config 2024 – Figma Updates
Figma presented his version 3 with lots of new functionalities. Get a resume of updates, including AI prototyping and search, a new tool to make slides from your design system, a new redesign and tons of smaller updates.
June 2024
How React 19 Almost Broke The Web
I hope you are not expecting react 19 to be released pretty soon. Although it is in release candidate state, some malfunctions are still discovered when tested by library developers. Here is a resume of how a small update about suspenses triggers data being fetched in waterfall instead of being parallelized.
May 2024
Angular 18 is EXACTLY what we needed
Angular 18 just got released and it was eagerly awaited. The angular team announced few months ago that this version should be a renew of the framework and we can indeed see that lots of new features were added, like signals. Good for us, there is no breaking change, so adoption could go smoothly.
May 2024
Nextjs 15 RC is out
Next releases a release candidate for the 15th version of the meta framework. This version is based on react 19 RC and includes react compiler, hydration error improvements, partial pre rendering and caching updates (fetch requests, route handlers, client router don't cache by default now).
May 2024
SolidStart 1.0: The Shape of Frameworks to Come
Solid start, the a meta framework based on Solid, just reach the stable version. It just ships 5Kb of javascript by default, and allow users to create both CSG, SSR and CSR according to their needs. It is also isomorphic, so the same code can run wether on client or server.
April 2024
More features for Astro in a new version
New version of astro with manual routing strategy for internationalization, experimental support for CSRF protection in SSR and cookies improvements.
April 2024
HTMX and Astro Are An Amazing Combo!
Its no secret that i love Astro, but implementing reactivity with CSR elements can sometimes be a little overkill. Using HTMX solves this problem by adding some reactivity in our pages without the need of an ui framework.
April 2024
Bun 1.1 finally supports Windows
1700 commits, thousands of bugs fixed, and tons of new features and API since the 1.0 version, but the major element of this release is the windows compatibility. But also, Bun 1.1 is up to 2x faster on large projects, now integrates a shell, has a new Glob api, and support vite syntax for process.env.
April 2024
Eslint evolves to version 9
New rules, dropping support of old Node version, but mostly the v9 introduces a new flat configuration file. Make sure that all your plugins support the new version before tempting an upgrade.
April 2024
Node 22 is finally here
The new version is finally released, and this one will become a LTS version. New compatibility with ESM, so now we'll be able to import and export our modules and start a migration from CJS to ESM. (Finally we can stop compiling in both ESM and CJS in our monorepos). Also a new version of the V8 engine and improvements for the websocket client.
April 2024
React 19 released in beta
A first beta for the next react version, but aimed at library developers for them to study and adopt the new features. It includes RSC, servers actions, new refs, context, document metadata, async scripts, prefetching, better error reporting.. The list of new features and upgrades is is pretty impressive.
March 2024
Angular’s Third Era is... weird
Angular just announced at the NG conference that the framework is merging with Wiz (Google's internal framework). Many efforts are also focused on AI (chatbot in the documentation, CLI capable of generating complete components..).
March 2024
Gleam 1.0 is out
Writing JavaScript without using JavaScript? A new tool for haters that allows you to compile this new language into JS. The syntax looks quite appealing and the documentation is super well done.
March 2024
Tailwind announces new V4 version in alpha
Performance improvements (up to 10 times faster) by rewriting part of the framework in Rust, over 35% reduction in package size by dropping PostCSS for a custom parser reducing parsing time by half.
March 2024
WinterJS just dropped and it's faster than Bun?
Is Bun already obsolete before we even had time to test it?
Release of a new JavaScript runtime even faster than Bun focused on interoperability.
February 2024
Conform 1
Conform is a new form management library with Progressive enhancement first APIs, Type-safe field inference, Fine-grained subscription, Built-in accessibility helpers, and Automatic type coercion with Zod. It is compatible with Next / Remix as it supports server Actions. According to early feedback, this library is still experimental but seems quite promising.
February 2024
Hono 4
Hono is a lightweight and fast backend framework that works on any JS platform (Cloudflare Workers, Fastly Compute, Deno, Bun, Vercel, AWS Lambda, Lambda@Edge, and Node.js).
Its version 4 brings support for JSX to create components, static site generation, and file-based routing
February 2024
Husky 9
Husky is a package that allows running commands automatically on each commit. It's quite handy for running tests, checking linting or code coverage, or validating code quality (for the most used).
Version 9 simplifies the installation and configuration of the package
February 2024
React 19
Meta has announced the upcoming version of React with numerous features:
On the agenda: React compiler, Server components, Actions, Asset loading, Document metadata
February 2024
Tempo
Tempo is a front-end library for time management specialized in date internationalization. It is based on browsers' Intl API, making its usage much simpler.