<?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: Saiful Siam</title>
    <description>The latest articles on DEV Community by Saiful Siam (@motionmind2007).</description>
    <link>https://dev.to/motionmind2007</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%2F3979365%2F9abed9cf-00b7-4008-8a9d-28e92bca4283.jpeg</url>
      <title>DEV Community: Saiful Siam</title>
      <link>https://dev.to/motionmind2007</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/motionmind2007"/>
    <language>en</language>
    <item>
      <title>Building a Frontend Framework from Scratch: Introducing Levelo JS</title>
      <dc:creator>Saiful Siam</dc:creator>
      <pubDate>Thu, 11 Jun 2026 12:27:54 +0000</pubDate>
      <link>https://dev.to/motionmind2007/building-a-frontend-framework-from-scratch-introducing-levelo-js-54ci</link>
      <guid>https://dev.to/motionmind2007/building-a-frontend-framework-from-scratch-introducing-levelo-js-54ci</guid>
      <description>&lt;p&gt;As developers, we often use frameworks every day without thinking much about how they work internally.&lt;/p&gt;

&lt;p&gt;A while ago, I started exploring frontend architecture more deeply. I wanted to understand what happens behind components, state management, reactivity, and rendering systems.&lt;/p&gt;

&lt;p&gt;That curiosity eventually led me to build my own frontend framework.&lt;/p&gt;

&lt;p&gt;Today, I'm excited to share &lt;strong&gt;Levelo JS&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is Levelo JS?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Levelo JS is a frontend framework built completely from scratch in JavaScript under the Motion Mind brand.&lt;/p&gt;

&lt;p&gt;The framework is designed around a few core ideas:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No Virtual DOM&lt;/li&gt;
&lt;li&gt;Signal-based reactivity&lt;/li&gt;
&lt;li&gt;Small bundle size&lt;/li&gt;
&lt;li&gt;SPA-focused architecture&lt;/li&gt;
&lt;li&gt;Simple developer experience&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Current core package version: &lt;strong&gt;levelojs v1.2.0&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The ecosystem also includes a CLI tool:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx create-levelo-app my-app
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Why Build Another Framework?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The goal was never to create "the next React" or replace existing frameworks.&lt;/p&gt;

&lt;p&gt;The real goal was to learn by building.&lt;/p&gt;

&lt;p&gt;I wanted to understand:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How reactivity systems work&lt;/li&gt;
&lt;li&gt;How rendering pipelines are designed&lt;/li&gt;
&lt;li&gt;How state updates affect the UI&lt;/li&gt;
&lt;li&gt;How framework architecture evolves from simple ideas&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Building everything from scratch taught me far more than simply reading documentation ever could.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Signal-Based State Management&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;One of the core concepts in Levelo JS is signal-based reactivity.&lt;/p&gt;

&lt;p&gt;A simple counter looks like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;state&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;levelojs&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;Counter&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; 
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;count&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;setCount&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;state&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt; 
  &lt;span class="k"&gt;return &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt; 
    &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;div&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; 
      &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;h2&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nf"&gt;count&lt;/span&gt;&lt;span class="p"&gt;()}&lt;/span&gt;&lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="sr"&gt;/h2&amp;gt;&lt;/span&gt;&lt;span class="err"&gt; 
&lt;/span&gt;      &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;button&lt;/span&gt; &lt;span class="nx"&gt;onclick&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nf"&gt;setCount&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;count&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;)}&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="nx"&gt;Level&lt;/span&gt; &lt;span class="nx"&gt;Up&lt;/span&gt; &lt;span class="err"&gt;➔&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="sr"&gt;/button&amp;gt;             &lt;/span&gt;&lt;span class="err"&gt; 
&lt;/span&gt;    &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="sr"&gt;/div&amp;gt;&lt;/span&gt;&lt;span class="err"&gt; 
&lt;/span&gt;  &lt;span class="p"&gt;);&lt;/span&gt; 
&lt;span class="p"&gt;}&lt;/span&gt; 
&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="k"&gt;default&lt;/span&gt; &lt;span class="nx"&gt;Counter&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The framework updates only what needs to change, without relying on a Virtual DOM.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Built Under Motion Mind&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Levelo JS is being developed under Motion Mind, an initiative focused on next-generation software and AI solutions.&lt;/p&gt;

&lt;p&gt;The vision behind Motion Mind is simple:&lt;/p&gt;

&lt;p&gt;Build useful software.&lt;br&gt;
Explore new ideas.&lt;br&gt;
Share the journey through open source.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A Personal Milestone&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;One detail that makes this project special to me is how it started.&lt;/p&gt;

&lt;p&gt;Up to version 1.0.4, Levelo JS was built entirely on an Android phone using Termux and acode.&lt;/p&gt;

&lt;p&gt;What started as experimentation on a mobile device eventually grew into a complete open-source framework with its own CLI, documentation site, and ecosystem.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Explore Levelo JS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Documentation:&lt;br&gt;
&lt;a href="https://levelojs.motionmind.me/" rel="noopener noreferrer"&gt;https://levelojs.motionmind.me/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;GitHub:&lt;br&gt;
&lt;a href="https://github.com/MotionMind2007/Levelo-Js" rel="noopener noreferrer"&gt;https://github.com/MotionMind2007/Levelo-Js&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Open for Collaboration&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Levelo JS is open source and actively evolving.&lt;/p&gt;

&lt;p&gt;If you're interested in frontend architecture, framework design, JavaScript internals, or open-source development, I'd love to hear your thoughts and feedback.&lt;/p&gt;

&lt;p&gt;Every suggestion, discussion, and contribution helps move the project forward.&lt;/p&gt;

&lt;p&gt;Thanks for reading.&lt;/p&gt;

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