<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: The Modern Web</title>
    <description>The latest articles on Forem by The Modern Web (@the-modern-web).</description>
    <link>https://forem.com/the-modern-web</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Forganization%2Fprofile_image%2F10663%2F5c29d11a-0b38-407f-8996-39ebff710a16.jpg</url>
      <title>Forem: The Modern Web</title>
      <link>https://forem.com/the-modern-web</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/the-modern-web"/>
    <language>en</language>
    <item>
      <title>React in 2025: Why It's No Longer Just a Library (Server Components &amp; Frameworks Explained)</title>
      <dc:creator>mehdi</dc:creator>
      <pubDate>Sun, 03 Aug 2025 09:15:03 +0000</pubDate>
      <link>https://forem.com/the-modern-web/react-in-2025-why-its-no-longer-just-a-library-server-components-frameworks-explained-30gh</link>
      <guid>https://forem.com/the-modern-web/react-in-2025-why-its-no-longer-just-a-library-server-components-frameworks-explained-30gh</guid>
      <description>&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/-xVHdXKAyqE"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>react</category>
      <category>nextjs</category>
      <category>javascript</category>
      <category>typescript</category>
    </item>
    <item>
      <title>The Future of Frontend: Progressive Web Apps, Microfrontends, &amp; JavaScript Frameworks in 2025</title>
      <dc:creator>mehdi</dc:creator>
      <pubDate>Wed, 30 Jul 2025 17:53:44 +0000</pubDate>
      <link>https://forem.com/the-modern-web/the-future-of-frontend-progressive-web-apps-microfrontends-javascript-frameworks-in-2025-2b87</link>
      <guid>https://forem.com/the-modern-web/the-future-of-frontend-progressive-web-apps-microfrontends-javascript-frameworks-in-2025-2b87</guid>
      <description>&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/eAZQhxzvYO8"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>typescript</category>
      <category>react</category>
      <category>vue</category>
    </item>
    <item>
      <title>The Rise of Adapters in the JavaScript Ecosystem</title>
      <dc:creator>mehdi</dc:creator>
      <pubDate>Sun, 27 Jul 2025 00:56:25 +0000</pubDate>
      <link>https://forem.com/the-modern-web/the-rise-of-adapters-in-the-javascript-ecosystem-2c76</link>
      <guid>https://forem.com/the-modern-web/the-rise-of-adapters-in-the-javascript-ecosystem-2c76</guid>
      <description>&lt;p&gt;The modern JavaScript landscape is characterized by rapid evolution and a proliferation of powerful tools, often referred to as meta-frameworks. As developers seek greater flexibility, performance, and maintainability, there's a growing emphasis on &lt;strong&gt;framework agnosticism&lt;/strong&gt; and &lt;strong&gt;runtime agnosticism&lt;/strong&gt;. This shift is paving the way for a new era where libraries and tools are designed with "adapters" in mind, allowing them to integrate seamlessly across different frameworks and runtime environments, thereby minimizing vendor lock-in and streamlining development workflows.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Agnostic Tides: Framework and Runtime Independence&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A key trend in contemporary web development is the move towards solutions that are not intrinsically tied to a single JavaScript framework or runtime. This allows developers to choose the best tool for the job without committing to an entire ecosystem.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Hono's Universal Reach&lt;/strong&gt;: Hono, a relatively new framework, exemplifies this trend. It is described as a &lt;strong&gt;small, simple, and ultrafast web framework built on Web Standards&lt;/strong&gt;. Its serverless design and embrace of modern web APIs caught the attention of developers due to its impressive speed and minimal footprint. Crucially, Hono works on practically any JavaScript runtime, including &lt;strong&gt;Cloudflare Workers, Fastly Compute, Deno, Bun, Vercel, Netlify, AWS Lambda, Lambda@Edge, and Node.js&lt;/strong&gt;. This broad compatibility means you can &lt;strong&gt;write your code once and deploy it almost anywhere without major modifications&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Nitro's Deployment Versatility&lt;/strong&gt;: Nitro, an open-source framework that builds web servers, is another champion of runtime agnosticism. It is designed to automatically make your code &lt;strong&gt;compatible with any deployment provider and runtime&lt;/strong&gt;. Nitro can be used as the server engine for full-stack frameworks like Nuxt, or standalone. It focuses purely on server-side logic and APIs, making it &lt;strong&gt;more lightweight and potentially faster for API-only use cases&lt;/strong&gt; compared to a full-stack framework like Nuxt.js. The underlying &lt;code&gt;h3&lt;/code&gt; library, used by Nitro, abstracts from Node.js, enabling support for serverless and other environments.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Vite as the Development Hub&lt;/strong&gt;: Vite, known for its &lt;strong&gt;hot-reloading capabilities in the browser&lt;/strong&gt;, has extended its utility to support modern backend frameworks like Hono. It provides a &lt;strong&gt;whole new way of developing full-stack applications&lt;/strong&gt; by enabling hot module reloading for Hono applications. This flexibility in the development server allows developers to mix and match frontend and backend technologies more easily.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Unifying the Frontend-Backend Divide&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The traditional division between frontend and backend development can introduce unnecessary complexities. Modern approaches aim to bridge this gap, often through shared tooling and type systems.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Sharing Types for Coherence&lt;/strong&gt;: With a full-stack architecture like Vite + Hono, developers can &lt;strong&gt;reduce the unnecessary division between the backend and the frontend&lt;/strong&gt; and &lt;strong&gt;improve the quality of code since Hono can share API types between the backend and the frontend&lt;/strong&gt;. This type-sharing capability is a significant benefit, fostering consistency and reducing errors across the stack.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Meta-Frameworks and Their Server Engines&lt;/strong&gt;: Frameworks like Next.js (React-based) and Nuxt.js (Vue.js-based) are popular examples of full-stack meta-frameworks that natively integrate server-side rendering (SSR). While they offer comprehensive features, if the primary goal is just an API server without server-rendered pages, &lt;strong&gt;Nitro would likely be the more efficient and streamlined choice&lt;/strong&gt; due to its focus on server-side operations and lighter overhead.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The Power of Portable Libraries: Adapters in Action&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The core of achieving true framework and runtime independence lies in adopting libraries that are designed to be portable and extensible through adaptation. These "adapters" allow a core logic to remain consistent while leveraging the unique benefits of the environment it's running in.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;State Management with TanStack Query&lt;/strong&gt;: As you mentioned, libraries like &lt;code&gt;TanStack Store&lt;/code&gt; (and its related &lt;code&gt;TanStack Query&lt;/code&gt;) are at the forefront of this movement. &lt;code&gt;TanStack Query&lt;/code&gt; is described as a &lt;strong&gt;"powerful asynchronous state management for TS/JS, React, Solid, Vue, Svelte and Angular"&lt;/strong&gt;. This highlights its &lt;strong&gt;framework-agnostic nature&lt;/strong&gt;, as it provides a unified API for data fetching and state management across multiple frontend frameworks. It handles caching, background updates, and stale data out-of-the-box with zero configuration, and there's &lt;strong&gt;no global state to manage, reducers, normalization systems, or heavy configurations to understand&lt;/strong&gt;. Being &lt;strong&gt;backend agnostic&lt;/strong&gt; and having &lt;strong&gt;zero dependencies&lt;/strong&gt; further contributes to its portability and ease of integration. The concept of providing "adapters" for specific framework features (like leveraging Angular signals for reactivity) perfectly embodies how these libraries offer universal utility while still being able to optimize for the chosen environment.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Flexible Server-Side Rendering (SSR) Solutions&lt;/strong&gt;: When it comes to SSR with Vite, several solutions are emerging that offer varying degrees of agnosticism and adaptation:

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;SSRx&lt;/strong&gt;: This Vite plugin focuses on smoothing out developer experience issues with Vite SSR and aims to &lt;strong&gt;"formalize a means of hooking 3rd party libraries into the SSR lifecycle, while remaining as flexible as possible"&lt;/strong&gt;. Its server-agnostic nature means it can be used with various Node.js/Bun servers or serverless HTTP frameworks, including Hono. This "hooking" mechanism acts as a form of adaptation, allowing developers to integrate their preferred tools.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Vinxi&lt;/strong&gt;: While Vinxi is coupled to the &lt;code&gt;H3&lt;/code&gt; http framework and Nitro web server, its author emphasizes that this coupling allows them to &lt;strong&gt;"build a shared library of trusted tools that can do the common operations across all the platforms"&lt;/strong&gt; such as sessions, CORS, cookies, and authentication. This approach aims for versatility by standardizing a robust server runtime rather than being entirely server-agnostic like SSRx. Despite this, Vinxi still facilitates interoperability, with examples of its integration with &lt;strong&gt;&lt;code&gt;TanStack Router&lt;/code&gt; (a framework-agnostic routing library) for SSR&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Vike&lt;/strong&gt;: Positioning itself as "Like Next.js / Nuxt but as do-one-thing-do-it-well Vite plugin," Vike offers a more full-featured solution compared to SSRx or Vinxi, notably featuring an &lt;strong&gt;integrated Client Router&lt;/strong&gt;. While powerful, its integrated router might be a distinguishing factor if you prefer to use a separate client-side router like &lt;code&gt;TanStack Router&lt;/code&gt; or &lt;code&gt;React Router&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;  &lt;strong&gt;Build Tooling and Code Synchronization&lt;/strong&gt;: The choice of build tools also plays a crucial role in enabling flexibility. For backend Node.js applications, the sources recommend using &lt;strong&gt;Rollup over &lt;code&gt;tsc&lt;/code&gt;&lt;/strong&gt; because &lt;code&gt;tsc&lt;/code&gt; is "very bad at supporting TypeScript" with &lt;code&gt;.ts&lt;/code&gt; extensions and can complicate a unified &lt;code&gt;tsconfig.json&lt;/code&gt; for both frontend and backend. Rollup's ability to handle this, while maintaining a single &lt;code&gt;tsconfig.json&lt;/code&gt; that works for both sides, is a practical example of adapting tooling to achieve a seamless full-stack development experience.&lt;/li&gt;

&lt;li&gt;  &lt;strong&gt;Type-Safe API Clients (Hono Client)&lt;/strong&gt;: Hono facilitates streamlined frontend-backend communication through its client. By importing the &lt;code&gt;api&lt;/code&gt; variable from &lt;code&gt;utils/frontend.ts&lt;/code&gt;, frontend components can &lt;strong&gt;"use it as if calling local functions"&lt;/strong&gt;. This &lt;code&gt;Hono Client&lt;/code&gt; (&lt;code&gt;hc&lt;/code&gt;) leverages TypeScript type inference to provide &lt;strong&gt;type-safe RPC-style APIs&lt;/strong&gt;, abstracting away the underlying HTTP requests and making API interactions feel more like local function calls. This abstraction layer effectively serves as an "adapter" for consuming backend services, promoting easier refactoring and potential migration of frontend technologies.&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The Future is Flexible&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The trend towards framework and runtime agnosticism, powered by smart adaptation strategies, is a significant step forward in JavaScript development. By leveraging tools like Hono and Nitro for universal runtime deployment, Vite for flexible development environments, and portable libraries like TanStack Query for core functionalities, developers can build applications with less technical debt and greater agility. This "rise of adapters" allows for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Reduced Vendor Lock-in&lt;/strong&gt;: Developers are not tied to a single framework or runtime, enabling them to choose components based on project needs rather than ecosystem constraints.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Improved Developer Experience&lt;/strong&gt;: Consistent APIs and patterns across different parts of the stack, facilitated by adapters, lead to a more intuitive and productive development process.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Future-Proofing&lt;/strong&gt;: Applications built with this philosophy are inherently more adaptable to future changes in the ever-evolving JavaScript landscape.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This focus on foundational portability and adaptive integration ensures that the JavaScript ecosystem continues to provide innovative, high-performance solutions for a wide array of application needs.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>node</category>
      <category>nextjs</category>
      <category>react</category>
    </item>
    <item>
      <title>🚀 The Rise of Adapters: Reimagining JavaScript Tooling in 2025</title>
      <dc:creator>mehdi</dc:creator>
      <pubDate>Fri, 25 Jul 2025 21:45:53 +0000</pubDate>
      <link>https://forem.com/the-modern-web/the-rise-of-adapters-reimagining-javascript-tooling-in-2025-52el</link>
      <guid>https://forem.com/the-modern-web/the-rise-of-adapters-reimagining-javascript-tooling-in-2025-52el</guid>
      <description>&lt;h2&gt;
  
  
  🔄 From Framework Lock-in to Flexible Tooling
&lt;/h2&gt;

&lt;p&gt;The JavaScript world has entered a renaissance. No longer are we tied into monolithic frameworks or rigid ecosystems. Instead, a wave of &lt;strong&gt;adapter-based tools&lt;/strong&gt; is giving developers &lt;strong&gt;flexibility, portability&lt;/strong&gt;, and &lt;strong&gt;reuse across frameworks&lt;/strong&gt;, without sacrificing performance or ergonomics.&lt;/p&gt;

&lt;h2&gt;
  
  
  TanStack Store: More than Just a Library
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Framework-Agnostic Core
&lt;/h3&gt;

&lt;p&gt;TanStack Store is a lightweight, type-safe reactive store built independently from any framework. That means your state logic—derivations, updates, batching—runs identically in React, Solid, Vue, Angular, Svelte, or even vanilla JS/TS.&lt;/p&gt;

&lt;h3&gt;
  
  
  Framework Adapters
&lt;/h3&gt;

&lt;p&gt;For each framework (React, Angular, Solid, Vue, Svelte), adapters translate the core reactive store into framework-native constructs—like signals in Angular or fine-grained updates in Solid.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why It Matters
&lt;/h3&gt;

&lt;p&gt;Your business logic and state manipulation remain portable. Only the UI glue layer differs, dramatically easing transitions when migrating between frameworks while preserving productivity.&lt;/p&gt;

&lt;h2&gt;
  
  
  Nitro &amp;amp; the UnJS Ecosystem: Runtime-Agnostic Superpowers
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Nitro's Universal Server Toolkit
&lt;/h3&gt;

&lt;p&gt;Nitro is a next-generation server toolkit built atop &lt;strong&gt;h3&lt;/strong&gt; and &lt;strong&gt;unenv&lt;/strong&gt;, designed to run &lt;strong&gt;anywhere&lt;/strong&gt;—Node.js, Deno, Bun, Cloudflare Workers, or other edge environments—without rewriting code.&lt;/p&gt;

&lt;h3&gt;
  
  
  Seamless Runtime Adapters
&lt;/h3&gt;

&lt;p&gt;Nitro's architecture adapts your code seamlessly to each runtime’s APIs, offering fetch-compatible handlers, caching, storage, and HTTP routing out-of-the-box.&lt;/p&gt;

&lt;h3&gt;
  
  
  Commitment to Openness
&lt;/h3&gt;

&lt;p&gt;Nitro maintains full neutrality and runtime agnosticism, reinforcing the vision of tooling without vendor lock-in.&lt;/p&gt;

&lt;p&gt;The broader UnJS ecosystem also includes adapter-driven utilities like &lt;strong&gt;unstorage&lt;/strong&gt;, &lt;strong&gt;ofetch&lt;/strong&gt;, and &lt;strong&gt;unplugin&lt;/strong&gt;, enhancing cross-runtime compatibility.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧩 Why Adapters Are the New Frontier
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Benefit&lt;/th&gt;
&lt;th&gt;What It Means for Developers&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Portability&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Core logic (state, routing, fetch) remains framework/runtime-agnostic, while only adapters differ per target environment.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Migration-first&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Framework migration becomes incremental: adapt only the UI layer, preserving business logic.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Ecosystem cohesion&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Projects like TanStack Form, Table, Query, and Store interoperate seamlessly across frameworks through adapters.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Performance-first&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Despite abstraction layers, tools like Nitro and TanStack Store remain minimal and optimized for performance.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  🎉 What This Means for JavaScript Developers
&lt;/h2&gt;

&lt;p&gt;We're witnessing a &lt;strong&gt;defragmentation&lt;/strong&gt;, not fragmentation:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Write Once, Adapt Anywhere&lt;/strong&gt;: Build core business logic once, adapting only as needed.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Unlock Flexibility&lt;/strong&gt;: Choose frameworks or runtimes per project or team without massive rewrites.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Community-Driven Standards&lt;/strong&gt;: Projects like Nitro and TanStack foster collaboration, openness, and innovation.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  ✅ Suggested Next Steps
&lt;/h2&gt;

&lt;p&gt;Explore adapter-first libraries like &lt;strong&gt;TanStack Store&lt;/strong&gt;, &lt;strong&gt;Nitro&lt;/strong&gt;, &lt;strong&gt;h3&lt;/strong&gt;, and &lt;strong&gt;HonoJS&lt;/strong&gt;. Embrace this powerful shift to future-proof your projects, enhance flexibility, and rediscover joy in JavaScript development.&lt;/p&gt;




&lt;h2&gt;
  
  
  ✨ Closing Thoughts
&lt;/h2&gt;

&lt;p&gt;Adapter-based tooling is reshaping JavaScript projects across front-end, back-end, and full-stack environments. The capacity to write once in a neutral core and adapt seamlessly ensures your projects stay maintainable, flexible, and team-friendly. Now is the time to join this exciting new frontier.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>typescript</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
    <item>
      <title>TanStack</title>
      <dc:creator>mehdi</dc:creator>
      <pubDate>Thu, 24 Jul 2025 08:25:01 +0000</pubDate>
      <link>https://forem.com/the-modern-web/tanstack-d17</link>
      <guid>https://forem.com/the-modern-web/tanstack-d17</guid>
      <description>&lt;h3&gt;
  
  
  TanStack resources
&lt;/h3&gt;

&lt;h4&gt;
  
  
  TanStack Start
&lt;/h4&gt;

&lt;p&gt;Full-stack React and Solid framework powered by TanStack Router&lt;/p&gt;

&lt;p&gt;&lt;a href="https://tanstack.com/start/latest" rel="noopener noreferrer"&gt;TanStack Start&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  TanStack Router
&lt;/h4&gt;

&lt;p&gt;Modern and scalable routing for React and Solid applications&lt;/p&gt;

&lt;p&gt;&lt;a href="https://tanstack.com/router/latest" rel="noopener noreferrer"&gt;TanStack Router&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  TanStack Query
&lt;/h4&gt;

&lt;p&gt;Powerful asynchronous state management for TS/JS, React, Solid, Vue, Svelte and Angular&lt;/p&gt;

&lt;p&gt;&lt;a href="https://tanstack.com/query/latest" rel="noopener noreferrer"&gt;TanStack Query&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  TanStack Store
&lt;/h4&gt;

&lt;p&gt;Framework agnostic type-safe store w/ reactive framework adapters&lt;/p&gt;

&lt;p&gt;&lt;a href="https://tanstack.com/store/latest" rel="noopener noreferrer"&gt;TanStack Store&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Videos
&lt;/h4&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/4PymccvinIo"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>typescript</category>
      <category>node</category>
      <category>vite</category>
    </item>
    <item>
      <title>WWDC25: Meet Containerization | Apple</title>
      <dc:creator>mehdi</dc:creator>
      <pubDate>Wed, 23 Jul 2025 16:06:54 +0000</pubDate>
      <link>https://forem.com/the-modern-web/wwdc25-meet-containerization-apple-3km2</link>
      <guid>https://forem.com/the-modern-web/wwdc25-meet-containerization-apple-3km2</guid>
      <description>&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/JvQtvbhtXmo"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>container</category>
      <category>docker</category>
      <category>swift</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Turning an Angular application into React using VS Code Agent mode</title>
      <dc:creator>mehdi</dc:creator>
      <pubDate>Tue, 22 Apr 2025 06:42:30 +0000</pubDate>
      <link>https://forem.com/the-modern-web/turning-an-angular-application-into-react-using-vs-code-agent-mode-343f</link>
      <guid>https://forem.com/the-modern-web/turning-an-angular-application-into-react-using-vs-code-agent-mode-343f</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/hyhZKRAQdLs"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>angular</category>
      <category>react</category>
      <category>vibecoding</category>
      <category>vscode</category>
    </item>
    <item>
      <title>Fireside Chat with DHH, Matz and Tobias Lütke - Rails World 2024</title>
      <dc:creator>mehdi</dc:creator>
      <pubDate>Fri, 18 Apr 2025 15:18:54 +0000</pubDate>
      <link>https://forem.com/the-modern-web/fireside-chat-with-dhh-matz-and-tobias-lutke-rails-world-2024-5bca</link>
      <guid>https://forem.com/the-modern-web/fireside-chat-with-dhh-matz-and-tobias-lutke-rails-world-2024-5bca</guid>
      <description>&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/zPBbHu-BKpQ"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;In a special #RailsWorld session, DHH (creator of Rails), Matz (creator of Ruby), and Shopify CEO Tobias Lütke sat down for a fireside chat about #Ruby, #Rails, and all things #opensource. &lt;/p&gt;

&lt;p&gt;This is the first time that Matz and DHH shared a stage, and it would not have been possible without Tobi, who not only donated his keynote spot to make this session happen, but also led the discussion.&lt;/p&gt;

&lt;p&gt;Source: &lt;a href="https://www.youtube.com/watch?v=zPBbHu-BKpQ" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=zPBbHu-BKpQ&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ruby</category>
      <category>rails</category>
      <category>techtalks</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Rails World 2024 Opening Keynote - David Heinemeier Hansson</title>
      <dc:creator>mehdi</dc:creator>
      <pubDate>Thu, 17 Apr 2025 10:26:12 +0000</pubDate>
      <link>https://forem.com/the-modern-web/rails-world-2024-opening-keynote-david-heinemeier-hansson-13fk</link>
      <guid>https://forem.com/the-modern-web/rails-world-2024-opening-keynote-david-heinemeier-hansson-13fk</guid>
      <description>&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/-cEn_83zRFw"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;During DHH's Opening Keynote of Rails World 2024 in Toronto, Rails 8 beta was shipped with Authentication, Propshaft, Solid Cache, Solid Queue, Solid Cable, Kamal 2, and Thruster. No PaaS needed when building with the One Person Framework.&lt;/p&gt;

&lt;p&gt;Source: &lt;a href="https://www.youtube.com/watch?v=-cEn_83zRFw" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=-cEn_83zRFw&lt;/a&gt;&lt;/p&gt;

</description>
      <category>rails</category>
      <category>ruby</category>
      <category>techtalks</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Copilot agent mode new features in Visual Studio Code | GitHub Checkout</title>
      <dc:creator>mehdi</dc:creator>
      <pubDate>Thu, 17 Apr 2025 05:00:25 +0000</pubDate>
      <link>https://forem.com/the-modern-web/copilot-agent-mode-new-features-in-visual-studio-code-github-checkout-34ml</link>
      <guid>https://forem.com/the-modern-web/copilot-agent-mode-new-features-in-visual-studio-code-github-checkout-34ml</guid>
      <description>&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/aKx5I0Mrr9g"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;In this GitHub Checkout episode, we explore the latest updates to GitHub Copilot's agent mode in Visual Studio Code, demonstrating how it automates codebase searches, terminal commands, and UI test generation through natural language prompts.&lt;/p&gt;

&lt;h1&gt;
  
  
  Technology #GitHubCopilot #CopilotAgentMode
&lt;/h1&gt;

&lt;p&gt;▬▬▬▬▬▬  TIMESTAMPS ⌚  ▬▬▬▬▬▬ &lt;/p&gt;

&lt;p&gt;0:00 Introduction&lt;br&gt;
00:29 Copilot Edits &lt;br&gt;
01:34 GitHub Copilot agent mode&lt;br&gt;
02:30 How to enable agent mode&lt;br&gt;
04:41 Copilot agent mode in action &lt;br&gt;
07:38 Running UI tests&lt;br&gt;
11:15 How Copilot changes developers' workflows&lt;br&gt;
12:50 What's new coming up?&lt;br&gt;
13:37 Outro&lt;/p&gt;

&lt;p&gt;▬▬▬▬▬▬ WANT TO LEARN MORE? 🚀  ▬▬▬▬▬▬ &lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/features/copilot" rel="noopener noreferrer"&gt;https://github.com/features/copilot&lt;/a&gt; &lt;br&gt;
&lt;a href="https://github.blog/news-insights/product-news/github-copilot-the-agent-awakens/" rel="noopener noreferrer"&gt;https://github.blog/news-insights/product-news/github-copilot-the-agent-awakens/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Source: &lt;a href="https://www.youtube.com/watch?v=aKx5I0Mrr9g" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=aKx5I0Mrr9g&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>githubcopilot</category>
      <category>vscode</category>
      <category>openai</category>
    </item>
    <item>
      <title>GitHub Copilot: the agent awakens</title>
      <dc:creator>mehdi</dc:creator>
      <pubDate>Thu, 17 Apr 2025 04:56:03 +0000</pubDate>
      <link>https://forem.com/the-modern-web/github-copilot-the-agent-awakens-2fl4</link>
      <guid>https://forem.com/the-modern-web/github-copilot-the-agent-awakens-2fl4</guid>
      <description>&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/C95drFKy4ss"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;The most recent updates to VS Code and GitHub Copilot are game-changers for your productivity. From next edit suggestions, allowing Copilot to suggest the next edit you might be looking for in your file, to new models, to prompt files to provide even more context, to Agent Mode in Copilot Chat, allowing Copilot to iterate and reason over an entire project - and even resolve errors! See all the features in action, and explore them in your own projects and workloads. Read more in our blog post: &lt;a href="https://github.blog/news-insights/product-news/github-copilot-the-agent-awakens/" rel="noopener noreferrer"&gt;https://github.blog/news-insights/product-news/github-copilot-the-agent-awakens/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Start using GitHub Copilot right now: &lt;a href="https://gh.io/copilot" rel="noopener noreferrer"&gt;https://gh.io/copilot&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;▬▬▬▬▬▬  TIMESTAMPS ⌚  ▬▬▬▬▬▬ &lt;br&gt;
0:00 Intro&lt;br&gt;
0:15 Next Edit Suggestions&lt;br&gt;
1:20 Copilot Chat and o3-mini&lt;br&gt;
1:55 Copilot Edit&lt;br&gt;
2:50 Copilot Vision&lt;br&gt;
3:20 Copilot Edit - Agent Mode&lt;br&gt;
4:50 Prompt files&lt;/p&gt;

&lt;p&gt;Source: &lt;a href="https://www.youtube.com/watch?v=C95drFKy4ss" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=C95drFKy4ss&lt;/a&gt;&lt;/p&gt;

</description>
      <category>githubcopilot</category>
      <category>vscode</category>
      <category>ai</category>
      <category>openai</category>
    </item>
    <item>
      <title>The Only 3 Videos You Need to Get Started with MCP!</title>
      <dc:creator>mehdi</dc:creator>
      <pubDate>Wed, 16 Apr 2025 06:25:05 +0000</pubDate>
      <link>https://forem.com/the-modern-web/the-only-3-videos-you-need-to-get-started-with-mcp-5d0a</link>
      <guid>https://forem.com/the-modern-web/the-only-3-videos-you-need-to-get-started-with-mcp-5d0a</guid>
      <description>&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/YRfOiB0Im64"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;In this video, I review 3 of the best MCP videos I’ve found that make learning Model Context Protocol simple, clear, and actually enjoyable. If you’re new to MCP or just want to cut through the noise and start with high-quality resources, this is the perfect place to begin.&lt;/p&gt;

&lt;p&gt;🔎 Chapters:&lt;br&gt;
00:00 Intro&lt;br&gt;
01:22 The Future of AI in VS Code: MCP Servers Explained!&lt;br&gt;
03:55 VS Code + MCP &lt;br&gt;
06:35 Remote MCP servers using Azure Functions &lt;br&gt;
08:36 Docs&lt;br&gt;
9:46 Closing Remarks&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Source: youtube.com/watch?v=YRfOiB0Im64&lt;/p&gt;

</description>
      <category>ai</category>
      <category>mcp</category>
      <category>llm</category>
      <category>vscode</category>
    </item>
  </channel>
</rss>
