<?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: Antar Mukhopadhyaya</title>
    <description>The latest articles on DEV Community by Antar Mukhopadhyaya (@antar_mukhopadhyaya).</description>
    <link>https://dev.to/antar_mukhopadhyaya</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%2F1713505%2F1e9d11ab-8dc8-4a8b-be10-b6fd0c5e5dfe.jpg</url>
      <title>DEV Community: Antar Mukhopadhyaya</title>
      <link>https://dev.to/antar_mukhopadhyaya</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/antar_mukhopadhyaya"/>
    <language>en</language>
    <item>
      <title>I tried “forgotten” frameworks — and shipped a client app in 3 hours</title>
      <dc:creator>Antar Mukhopadhyaya</dc:creator>
      <pubDate>Sun, 05 Apr 2026 12:10:06 +0000</pubDate>
      <link>https://dev.to/antar_mukhopadhyaya/i-tried-forgotten-frameworks-and-shipped-a-client-app-in-3-hours-31gi</link>
      <guid>https://dev.to/antar_mukhopadhyaya/i-tried-forgotten-frameworks-and-shipped-a-client-app-in-3-hours-31gi</guid>
      <description>&lt;p&gt;I didn't expect to use &lt;strong&gt;Framework7&lt;/strong&gt; or &lt;strong&gt;NativeScript&lt;/strong&gt; in 2026.&lt;br&gt;
But yesterday evening, I got a small client requirement: a simple inventory tracking system.&lt;/p&gt;

&lt;p&gt;Two roles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Admin -&amp;gt; add items, restock, edit/delete, view audit logs.&lt;/li&gt;
&lt;li&gt;Staff -&amp;gt; only deduct/sell items.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The usual instinct
&lt;/h2&gt;

&lt;p&gt;My first thought was obvious:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;React Native&lt;/li&gt;
&lt;li&gt;or Jetpack Compose&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But then I paused. That meant setting up environments, fixing dependencies, dealing with configs, and running &lt;code&gt;npx expo install --fix&lt;/code&gt; type commands.&lt;/p&gt;

&lt;p&gt;And for what? A simple app. I didn't need the best stack; I needed the &lt;strong&gt;fastest path to working software&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Trying NativeScript
&lt;/h2&gt;

&lt;p&gt;I had seen &lt;a href="https://nativescript.org" rel="noopener noreferrer"&gt;NativeScript&lt;/a&gt; before in a YouTube video, so I gave it a try.&lt;/p&gt;

&lt;p&gt;And honestly,&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;NativeScript felt closer to native and more fluid.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The UI felt smooth and the experience was solid.&lt;/p&gt;

&lt;p&gt;But...&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;It works really well when it works.&lt;br&gt;
But when it doesn't, you are kind of on your own.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I ran into:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;inconsistent documentation&lt;/li&gt;
&lt;li&gt;outdated packages (6-8 years old)&lt;/li&gt;
&lt;li&gt;issues with font icons not rendering&lt;/li&gt;
&lt;li&gt;styling that isn't exactly standard CSS&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I fixed some of it, but it was slowing me down.&lt;/p&gt;

&lt;p&gt;And for this project, speed mattered more.&lt;/p&gt;




&lt;h2&gt;
  
  
  Switching to Framework7
&lt;/h2&gt;

&lt;p&gt;So I switched.&lt;/p&gt;

&lt;p&gt;I scaffolded a &lt;a href="https://capacitorjs.com" rel="noopener noreferrer"&gt;Capacitor&lt;/a&gt; app, added &lt;a href="https://framework7.io" rel="noopener noreferrer"&gt;Framework7&lt;/a&gt;, and just started building.&lt;/p&gt;

&lt;p&gt;And this is where things clicked.&lt;/p&gt;

&lt;p&gt;Framework7 already had:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;pull to refresh&lt;/li&gt;
&lt;li&gt;swipeable list items&lt;/li&gt;
&lt;li&gt;infinite scrolling&lt;/li&gt;
&lt;li&gt;built-in toasts, dialogs and alerts&lt;/li&gt;
&lt;li&gt;ready-made UI components like search bar and icons&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F23hwetnzgr4wu27uktfp.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F23hwetnzgr4wu27uktfp.jpeg" alt="Framework7 UI Components in action" width="720" height="1560"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Everything I needed for this kind of app was already there.&lt;/p&gt;

&lt;p&gt;No overthinking.&lt;/p&gt;

&lt;p&gt;Just import and use.&lt;/p&gt;

&lt;h2&gt;
  
  
  What surprised me
&lt;/h2&gt;

&lt;p&gt;I finished the entire app in &lt;strong&gt;under 3 hours (including testing)&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Stack:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Framework7&lt;/li&gt;
&lt;li&gt;Capacitor&lt;/li&gt;
&lt;li&gt;TanStack Query&lt;/li&gt;
&lt;li&gt;Supabase&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And the result?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1s3wzsig4q0ub9ifxd89.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1s3wzsig4q0ub9ifxd89.jpeg" alt="inventory app UI built with Framework7" width="720" height="1560"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The UI looked completely like a native Material app.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If I showed it to someone, they'd probably assume it was built with Jetpack Compose.&lt;/p&gt;




&lt;h2&gt;
  
  
  The tradeoff
&lt;/h2&gt;

&lt;p&gt;Of course:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;NativeScript -&amp;gt; more native feel, smoother&lt;/li&gt;
&lt;li&gt;Framework7 -&amp;gt; runs in WebView with the help of Capacitor.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So yes, NativeScript felt more fluid and performant.&lt;/p&gt;

&lt;p&gt;But:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;I didn't need that level of fidelity.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I needed something:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;simple&lt;/li&gt;
&lt;li&gt;fast&lt;/li&gt;
&lt;li&gt;correct&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  The real lesson
&lt;/h2&gt;

&lt;p&gt;This project reminded me of something important:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Not every problem needs the best framework.&lt;br&gt;
It needs the right framework for the constraints.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Final thought
&lt;/h2&gt;

&lt;p&gt;Before I wrap up, one thing I want to say about NativeScript.&lt;/p&gt;

&lt;p&gt;Personally, I think the idea behind NativeScript is genuinely unique.&lt;/p&gt;

&lt;p&gt;Being able to use JavaScript/TypeScript to directly access native APIs without a heavy bridge layer is a very powerful concept. The team behind it has done some really impressive work.&lt;/p&gt;

&lt;p&gt;But at the same time:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;a great idea alone isn’t enough.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The ecosystem and documentation haven’t kept up, and that makes it hard to rely on in real-world scenarios where time matters.&lt;/p&gt;

&lt;p&gt;That said, I would still consider using it for future projects — especially when I have more time.&lt;/p&gt;

&lt;p&gt;The idea and execution behind NativeScript are too unique to ignore.&lt;/p&gt;




&lt;p&gt;Most clients don’t need complex systems.&lt;/p&gt;

&lt;p&gt;They don’t care about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;architecture purity&lt;/li&gt;
&lt;li&gt;cutting-edge stacks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;They care about:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;something that works consistently and fits into their workflow.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;And sometimes, the tools that help you do that fastest&lt;br&gt;
are the ones people stopped talking about.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>productivity</category>
      <category>android</category>
    </item>
  </channel>
</rss>
