<?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>DEV Community: Jürgen Kofler</title>
    <description>The latest articles on DEV Community by Jürgen Kofler (@nonblocking).</description>
    <link>https://dev.to/nonblocking</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%2Fuser%2Fprofile_image%2F273093%2Ff8dba957-9b8a-4937-8062-c4f085727973.png</url>
      <title>DEV Community: Jürgen Kofler</title>
      <link>https://dev.to/nonblocking</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nonblocking"/>
    <language>en</language>
    <item>
      <title>OpenMicrofrontends Specification Released</title>
      <dc:creator>Jürgen Kofler</dc:creator>
      <pubDate>Mon, 10 Nov 2025 13:51:01 +0000</pubDate>
      <link>https://dev.to/nonblocking/openmicrofrontends-specification-released-3oh6</link>
      <guid>https://dev.to/nonblocking/openmicrofrontends-specification-released-3oh6</guid>
      <description>&lt;p&gt;The &lt;a href="https://open-microfrontends.org" rel="noopener noreferrer"&gt;OpenMicrofrontends&lt;/a&gt; project aims to provide a formal specification for Microfrontends provided by a server. Think of it as &lt;a href="https://www.openapis.org" rel="noopener noreferrer"&gt;OpenAPI&lt;/a&gt; for Microfrontends.&lt;/p&gt;

&lt;p&gt;The project just released version 1.0.0 of the specification and a generator to create type-safe integration code on the Microfrontend- and the Host Application-side.&lt;/p&gt;

&lt;p&gt;Example Description:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;$schema&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;https://open-microfrontends.org/schemas/1-0-0.json&lt;/span&gt;
&lt;span class="na"&gt;openMicrofrontends&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;1.0.0&lt;/span&gt;
&lt;span class="na"&gt;servers&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
&lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;url&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s1"&gt;'&lt;/span&gt;&lt;span class="s"&gt;http://localhost:7890'&lt;/span&gt;
  &lt;span class="na"&gt;description&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Local Test Server&lt;/span&gt;
&lt;span class="na"&gt;microfrontends&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
&lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;My First Microfrontend&lt;/span&gt;
  &lt;span class="na"&gt;assets&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;basePath&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;/public&lt;/span&gt;
    &lt;span class="na"&gt;js&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="na"&gt;moduleSystem&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;ESM&lt;/span&gt;
      &lt;span class="na"&gt;initial&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
        &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="s"&gt;Microfrontend.js&lt;/span&gt;
  &lt;span class="na"&gt;rendererFunctionName&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;startMyFirstMicrofrontend&lt;/span&gt;
  &lt;span class="na"&gt;config&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;schema&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="na"&gt;type&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;object&lt;/span&gt;
      &lt;span class="na"&gt;properties&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
        &lt;span class="na"&gt;welcomeMessage&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
          &lt;span class="na"&gt;type&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;string&lt;/span&gt;
      &lt;span class="na"&gt;required&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="pi"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;welcomeMessage"&lt;/span&gt;&lt;span class="pi"&gt;]&lt;/span&gt;
    &lt;span class="na"&gt;default&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="na"&gt;welcomeMessage&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Hello World!&lt;/span&gt;
  &lt;span class="na"&gt;messages&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;ping&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="na"&gt;publish&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;
      &lt;span class="na"&gt;subscribe&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;
      &lt;span class="na"&gt;schema&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
        &lt;span class="na"&gt;type&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;object&lt;/span&gt;
        &lt;span class="na"&gt;properties&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
          &lt;span class="na"&gt;ping&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
            &lt;span class="na"&gt;const&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;
        &lt;span class="na"&gt;required&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="pi"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;ping"&lt;/span&gt;&lt;span class="pi"&gt;]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Find out more on the &lt;a href="https://open-microfrontends.org" rel="noopener noreferrer"&gt;project homepage&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>microfrontends</category>
      <category>frontend</category>
    </item>
    <item>
      <title>Mashroom Server 2.3 released</title>
      <dc:creator>Jürgen Kofler</dc:creator>
      <pubDate>Fri, 10 Feb 2023 14:06:37 +0000</pubDate>
      <link>https://dev.to/nonblocking/mashroom-server-23-released-38mn</link>
      <guid>https://dev.to/nonblocking/mashroom-server-23-released-38mn</guid>
      <description>&lt;p&gt;We've released Version 2.3 of the Microfrontend Integration Platform &lt;strong&gt;Mashroom Server&lt;/strong&gt; today.&lt;br&gt;
It comes now with improved TypeScript support and a lot of other neat features. &lt;br&gt;
Checkout the full post: &lt;a href="https://medium.com/mashroom-server/mashroom-server-2-3-released-889c9a519ce4" rel="noopener noreferrer"&gt;https://medium.com/mashroom-server/mashroom-server-2-3-released-889c9a519ce4&lt;/a&gt;&lt;/p&gt;

</description>
      <category>vibecoding</category>
    </item>
    <item>
      <title>Mashroom Server v2 released</title>
      <dc:creator>Jürgen Kofler</dc:creator>
      <pubDate>Mon, 25 Apr 2022 13:24:02 +0000</pubDate>
      <link>https://dev.to/nonblocking/mashroom-server-v2-released-c3m</link>
      <guid>https://dev.to/nonblocking/mashroom-server-v2-released-c3m</guid>
      <description>&lt;p&gt;Today, we've released the second major version of the Microfrontend Integration Platform &lt;em&gt;Mashroom Server&lt;/em&gt;. &lt;/p&gt;

&lt;p&gt;With this version we've added hybrid rendering capabilities (support for SPAs/Microfrontends with server-side rendering) and performance and SEO optimisations. This makes the platform more suitable for websites. &lt;/p&gt;

&lt;p&gt;Check out the details here: &lt;a href="https://medium.com/mashroom-server/mashroom-server-2-0-released-3b62d2e1011e"&gt;https://medium.com/mashroom-server/mashroom-server-2-0-released-3b62d2e1011e&lt;/a&gt; &lt;/p&gt;

</description>
    </item>
    <item>
      <title>Creating a Microfrontend Platform with Mashroom Portal on Kubernetes</title>
      <dc:creator>Jürgen Kofler</dc:creator>
      <pubDate>Mon, 03 Feb 2020 08:24:44 +0000</pubDate>
      <link>https://dev.to/nonblocking/creating-a-microfrontend-platform-with-mashroom-portal-on-kubernetes-1loo</link>
      <guid>https://dev.to/nonblocking/creating-a-microfrontend-platform-with-mashroom-portal-on-kubernetes-1loo</guid>
      <description>&lt;p&gt;Wouldn’t it be cool to deploy and operate Microfrontends just like Microservices in independent containers on an orchestration platform such as Kubernetes?&lt;/p&gt;

&lt;p&gt;Here a short article that describes how to create such a platform: &lt;a href="https://medium.com/mashroom-server/creating-a-microfrontend-platform-with-mashroom-portal-on-kubernetes-4bf4c9d60940"&gt;https://medium.com/mashroom-server/creating-a-microfrontend-platform-with-mashroom-portal-on-kubernetes-4bf4c9d60940&lt;/a&gt;&lt;/p&gt;

</description>
      <category>microfrontends</category>
      <category>kubernetes</category>
      <category>mashroom</category>
    </item>
    <item>
      <title>Mashroom Server - Micro-Frontend Integration Platform</title>
      <dc:creator>Jürgen Kofler</dc:creator>
      <pubDate>Sat, 16 Nov 2019 17:19:25 +0000</pubDate>
      <link>https://dev.to/nonblocking/mashroom-server-micro-frontend-integration-platform-5abp</link>
      <guid>https://dev.to/nonblocking/mashroom-server-micro-frontend-integration-platform-5abp</guid>
      <description>&lt;p&gt;A few months ago we've open sourced &lt;em&gt;Mashroom Server&lt;/em&gt;, a platform that allows you to easily build Web-Portals from Microfrontends (either server-side rendered Express.js web-apps or client-side SPAs). React, Vue or Angular apps can be developed completely independent (and without any lock-in) and then later integrated into Portal pages (even via Drag'n'Drop). The platform also comes with security, theming, i18n, storage and communication out of the box.&lt;/p&gt;

&lt;p&gt;Version 1.2 has just been released today: &lt;a href="https://medium.com/mashroom-server/mashroom-server-1-2-released-f4e5502d855d"&gt;https://medium.com/mashroom-server/mashroom-server-1-2-released-f4e5502d855d&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Check out the homepage for the current features: &lt;a href="https://www.mashroom-server.com/"&gt;https://www.mashroom-server.com/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>microfrontends</category>
      <category>node</category>
      <category>webdev</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
