<?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: Julian van Loggerenberg</title>
    <description>The latest articles on DEV Community by Julian van Loggerenberg (@julian_vanloggerenberg_c).</description>
    <link>https://dev.to/julian_vanloggerenberg_c</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%2F3352850%2Fe367c713-06aa-45df-b578-1287485b6980.png</url>
      <title>DEV Community: Julian van Loggerenberg</title>
      <link>https://dev.to/julian_vanloggerenberg_c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/julian_vanloggerenberg_c"/>
    <language>en</language>
    <item>
      <title>We build our web apps with vanilla JS — here’s how (and why)</title>
      <dc:creator>Julian van Loggerenberg</dc:creator>
      <pubDate>Mon, 14 Jul 2025 08:34:38 +0000</pubDate>
      <link>https://dev.to/julian_vanloggerenberg_c/we-build-our-web-apps-without-react-heres-how-and-why-4005</link>
      <guid>https://dev.to/julian_vanloggerenberg_c/we-build-our-web-apps-without-react-heres-how-and-why-4005</guid>
      <description>&lt;p&gt;Hi everyone 👋&lt;/p&gt;

&lt;p&gt;I just wanted to share a little about how my team and I build our web apps without heavy frameworks like React or Vue.&lt;/p&gt;

&lt;p&gt;Instead, we use simple, plain JavaScript helpers to keep our UI clear and our logic easy to follow.&lt;br&gt;
We build trees of HTML with functions, toggle things with plain JS, and keep the DOM our friend — no magic, no build step, no huge dependencies.&lt;/p&gt;

&lt;p&gt;Here’s a tiny example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;var f100 = {};
f100.Begin = function (){
  m.Hide(x100);
  var h = 'Hello World!';
  f100.div = m.e('f100');
  f100.div.innerHTML = h;
  m.Show(f100);
};
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;We use a few simple helpers like m.Button() or m.e() for DOM stuff — that’s it.&lt;br&gt;
No virtual DOM, no JSX, just readable and easy to debug.&lt;/p&gt;

&lt;p&gt;We’ve found this style:&lt;/p&gt;

&lt;p&gt;Loads super fast ⚡&lt;/p&gt;

&lt;p&gt;Needs almost no setup&lt;/p&gt;

&lt;p&gt;Feels clear to debug&lt;/p&gt;

&lt;p&gt;Keeps the real DOM as the source of truth&lt;/p&gt;

&lt;p&gt;I know it’s not for everyone — but if you like tiny tools and understanding exactly what’s running in your browser, maybe you’ll enjoy it too.&lt;/p&gt;

&lt;p&gt;🗣️ Curious?&lt;br&gt;
I’d love to hear what you think!&lt;br&gt;
Would you use this? Or do you prefer React’s way?&lt;/p&gt;

&lt;p&gt;Here’s our YouTube channel showing what we've built with this way so far:&lt;br&gt;
&lt;a href="https://www.youtube.com/channel/UCZ7P7mDc88Ghih8MhMkrBpA" rel="noopener noreferrer"&gt;https://www.youtube.com/channel/UCZ7P7mDc88Ghih8MhMkrBpA&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading! 🌱✨&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>opensource</category>
      <category>react</category>
    </item>
  </channel>
</rss>
