<?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: Nandan Das</title>
    <description>The latest articles on Forem by Nandan Das (@nandan_das_369).</description>
    <link>https://forem.com/nandan_das_369</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%2F3833946%2F4537df82-cbf6-42c0-b967-51cee246516d.png</url>
      <title>Forem: Nandan Das</title>
      <link>https://forem.com/nandan_das_369</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/nandan_das_369"/>
    <language>en</language>
    <item>
      <title>The Features That Make OrinIDE Different From Other Browser IDEs</title>
      <dc:creator>Nandan Das</dc:creator>
      <pubDate>Sun, 10 May 2026 13:01:29 +0000</pubDate>
      <link>https://forem.com/nandan_das_369/the-features-that-make-orinide-different-from-other-browser-ides-4j0i</link>
      <guid>https://forem.com/nandan_das_369/the-features-that-make-orinide-different-from-other-browser-ides-4j0i</guid>
      <description>&lt;p&gt;A few days ago, I shared a post about building &lt;strong&gt;OrinIDE&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;This post is different.&lt;/p&gt;

&lt;p&gt;This is about the features and design decisions that make it fundamentally different from most browser-based IDEs and mobile coding environments.&lt;/p&gt;

&lt;p&gt;Most web IDEs today usually have at least one of these problems:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;fake terminals,&lt;/li&gt;
&lt;li&gt;poor mobile support,&lt;/li&gt;
&lt;li&gt;heavy Electron-based architecture,&lt;/li&gt;
&lt;li&gt;cloud dependency,&lt;/li&gt;
&lt;li&gt;locked AI features,&lt;/li&gt;
&lt;li&gt;or overloaded UIs.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I wanted something simpler and more practical.&lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;OrinIDE&lt;/strong&gt; — a lightweight AI-powered browser IDE designed to run locally, including on Android through Termux.&lt;/p&gt;




&lt;h2&gt;
  
  
  Philosophy Behind OrinIDE
&lt;/h2&gt;

&lt;p&gt;The goal was never to create “another VS Code clone”.&lt;/p&gt;

&lt;p&gt;The goal was:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;real development,&lt;/li&gt;
&lt;li&gt;real terminal access,&lt;/li&gt;
&lt;li&gt;AI-assisted workflows,&lt;/li&gt;
&lt;li&gt;lightweight execution,&lt;/li&gt;
&lt;li&gt;and full mobile usability.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I wanted an environment where a phone could genuinely become a coding machine.&lt;/p&gt;




&lt;h2&gt;
  
  
  1. Real Browser Terminal (Not Simulated)
&lt;/h2&gt;

&lt;p&gt;One thing that frustrates me in many browser IDEs is fake terminals.&lt;/p&gt;

&lt;p&gt;OrinIDE uses a real backend terminal system.&lt;/p&gt;

&lt;p&gt;That means:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;npm&lt;/code&gt; works&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;git&lt;/code&gt; works&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;node&lt;/code&gt; works&lt;/li&gt;
&lt;li&gt;shell commands work&lt;/li&gt;
&lt;li&gt;actual processes run normally&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Directly from the browser.&lt;/p&gt;

&lt;p&gt;This makes the environment usable for real development instead of just demos.&lt;/p&gt;




&lt;h2&gt;
  
  
  2. Android + Termux Support
&lt;/h2&gt;

&lt;p&gt;This was one of the biggest priorities.&lt;/p&gt;

&lt;p&gt;Most IDEs technically “open” on mobile but become painful to use.&lt;/p&gt;

&lt;p&gt;OrinIDE was designed with mobile usability in mind.&lt;/p&gt;

&lt;p&gt;It can run directly through Termux:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pkg update &lt;span class="nt"&gt;-y&lt;/span&gt;
pkg &lt;span class="nb"&gt;install &lt;/span&gt;nodejs-lts &lt;span class="nt"&gt;-y&lt;/span&gt;

npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; orin-ide

orin-ide
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then simply open:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;http://127.0.0.1:3000
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Your Android phone becomes a local coding environment.&lt;/p&gt;




&lt;h2&gt;
  
  
  3. AI Integration Built Into the Workflow
&lt;/h2&gt;

&lt;p&gt;OrinIDE includes built-in AI chat powered through OpenRouter.&lt;/p&gt;

&lt;p&gt;You can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;generate code&lt;/li&gt;
&lt;li&gt;refactor files&lt;/li&gt;
&lt;li&gt;debug issues&lt;/li&gt;
&lt;li&gt;explain code&lt;/li&gt;
&lt;li&gt;edit entire files&lt;/li&gt;
&lt;li&gt;ask development questions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Supported models include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GPT-OSS 120B&lt;/li&gt;
&lt;li&gt;DeepSeek&lt;/li&gt;
&lt;li&gt;Gemma&lt;/li&gt;
&lt;li&gt;Nemotron&lt;/li&gt;
&lt;li&gt;GLM&lt;/li&gt;
&lt;li&gt;custom OpenRouter models&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The important part is that AI is integrated into the workflow itself instead of being treated like a separate chatbot.&lt;/p&gt;




&lt;h2&gt;
  
  
  4. AI Diff Viewer
&lt;/h2&gt;

&lt;p&gt;I personally dislike when AI tools silently overwrite files.&lt;/p&gt;

&lt;p&gt;So OrinIDE includes a diff-review system.&lt;/p&gt;

&lt;p&gt;When AI edits a file:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;changes are highlighted,&lt;/li&gt;
&lt;li&gt;additions/removals are visible,&lt;/li&gt;
&lt;li&gt;and edits can be accepted or rejected.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This creates a safer AI-assisted coding workflow.&lt;/p&gt;




&lt;h2&gt;
  
  
  5. Lightweight Architecture
&lt;/h2&gt;

&lt;p&gt;A lot of development tools today feel unnecessarily heavy.&lt;/p&gt;

&lt;p&gt;OrinIDE intentionally stays lightweight.&lt;/p&gt;

&lt;p&gt;Main backend stack:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Express&lt;/li&gt;
&lt;li&gt;ws&lt;/li&gt;
&lt;li&gt;chokidar&lt;/li&gt;
&lt;li&gt;multer&lt;/li&gt;
&lt;li&gt;archiver&lt;/li&gt;
&lt;/ul&gt;

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

&lt;p&gt;No massive desktop runtime.&lt;/p&gt;

&lt;p&gt;Just a local server + browser.&lt;/p&gt;




&lt;h2&gt;
  
  
  6. Full File System Access
&lt;/h2&gt;

&lt;p&gt;OrinIDE includes a full project file explorer.&lt;/p&gt;

&lt;p&gt;You can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;create files&lt;/li&gt;
&lt;li&gt;create folders&lt;/li&gt;
&lt;li&gt;rename files&lt;/li&gt;
&lt;li&gt;delete files&lt;/li&gt;
&lt;li&gt;organize projects&lt;/li&gt;
&lt;li&gt;manage structures&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;directly inside the browser.&lt;/p&gt;




&lt;h2&gt;
  
  
  7. ZIP Export System
&lt;/h2&gt;

&lt;p&gt;Projects can be exported instantly as ZIP files.&lt;/p&gt;

&lt;p&gt;Useful for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;backups&lt;/li&gt;
&lt;li&gt;sharing&lt;/li&gt;
&lt;li&gt;releases&lt;/li&gt;
&lt;li&gt;deployments&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This sounds simple, but it becomes extremely useful in mobile workflows.&lt;/p&gt;




&lt;h2&gt;
  
  
  8. Project-Wide Find &amp;amp; Replace
&lt;/h2&gt;

&lt;p&gt;The IDE supports searching across the entire project.&lt;/p&gt;

&lt;p&gt;Useful for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;refactoring&lt;/li&gt;
&lt;li&gt;variable renaming&lt;/li&gt;
&lt;li&gt;fixing imports&lt;/li&gt;
&lt;li&gt;large-scale edits&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  9. Built-In Snippet System
&lt;/h2&gt;

&lt;p&gt;OrinIDE includes built-in snippets for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;JavaScript&lt;/li&gt;
&lt;li&gt;Python&lt;/li&gt;
&lt;li&gt;HTML&lt;/li&gt;
&lt;li&gt;CSS&lt;/li&gt;
&lt;li&gt;React&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Accessible quickly through shortcuts.&lt;/p&gt;




&lt;h2&gt;
  
  
  10. Mobile-Friendly UI
&lt;/h2&gt;

&lt;p&gt;Most browser IDEs ignore mobile usability.&lt;/p&gt;

&lt;p&gt;OrinIDE contains responsive layouts and mobile-focused UI adjustments to remain usable on phones and tablets.&lt;/p&gt;

&lt;p&gt;This was one of the most important parts of the project.&lt;/p&gt;




&lt;h2&gt;
  
  
  Internal Structure
&lt;/h2&gt;

&lt;p&gt;The architecture is modular.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;frontend/
backend/
routes/
services/
public/js/
public/css/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Frontend modules include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;terminal&lt;/li&gt;
&lt;li&gt;editor&lt;/li&gt;
&lt;li&gt;AI chat&lt;/li&gt;
&lt;li&gt;snippets&lt;/li&gt;
&lt;li&gt;file tree&lt;/li&gt;
&lt;li&gt;preview system&lt;/li&gt;
&lt;li&gt;media handling&lt;/li&gt;
&lt;li&gt;utilities&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Backend handles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;terminal management&lt;/li&gt;
&lt;li&gt;file routes&lt;/li&gt;
&lt;li&gt;ZIP exports&lt;/li&gt;
&lt;li&gt;uploads&lt;/li&gt;
&lt;li&gt;file watching&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Technical Details
&lt;/h2&gt;

&lt;h3&gt;
  
  
  File Watching
&lt;/h3&gt;

&lt;p&gt;Uses &lt;code&gt;chokidar&lt;/code&gt; for real-time updates.&lt;/p&gt;

&lt;h3&gt;
  
  
  ZIP Exports
&lt;/h3&gt;

&lt;p&gt;Uses &lt;code&gt;archiver&lt;/code&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Media Uploads
&lt;/h3&gt;

&lt;p&gt;Uses &lt;code&gt;multer&lt;/code&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Terminal Communication
&lt;/h3&gt;

&lt;p&gt;Uses WebSockets.&lt;/p&gt;

&lt;h3&gt;
  
  
  UI preview:
&lt;/h3&gt;

&lt;h2&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%2Fw9jxdmnzvbc0nhl0ztar.png" alt=" " width="800" height="429"&gt;
&lt;/h2&gt;

&lt;h2&gt;
  
  
  What Makes It Different
&lt;/h2&gt;

&lt;p&gt;I think the main difference is this:&lt;/p&gt;

&lt;p&gt;OrinIDE focuses on &lt;em&gt;practical development&lt;/em&gt; instead of just looking modern.&lt;/p&gt;

&lt;p&gt;That means:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;real shell access,&lt;/li&gt;
&lt;li&gt;mobile usability,&lt;/li&gt;
&lt;li&gt;lightweight execution,&lt;/li&gt;
&lt;li&gt;AI-assisted workflows,&lt;/li&gt;
&lt;li&gt;and local-first development.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The project was designed to remain usable even on weaker systems and Android devices.&lt;/p&gt;

&lt;p&gt;A coding environment should not require expensive hardware.&lt;/p&gt;




&lt;h2&gt;
  
  
  Future Plans
&lt;/h2&gt;

&lt;p&gt;Planned features include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Git integration&lt;/li&gt;
&lt;li&gt;extension system&lt;/li&gt;
&lt;li&gt;collaborative editing&lt;/li&gt;
&lt;li&gt;offline AI support&lt;/li&gt;
&lt;li&gt;local model execution&lt;/li&gt;
&lt;li&gt;multi-tab workspaces&lt;/li&gt;
&lt;li&gt;plugin APIs&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  GitHub
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://github.com/nandandas2407-web/orin-ide
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  NPM
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://www.npmjs.com/package/orin-ide
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;This project started as an experiment.&lt;/p&gt;

&lt;p&gt;Now it is becoming a serious attempt at making development more accessible from anywhere — especially on Android and low-end devices.&lt;/p&gt;

&lt;p&gt;If you try OrinIDE, I would genuinely love feedback or ideas.&lt;/p&gt;

&lt;h2&gt;
  
  
  javascript #nodejs #opensource #webdev #android #ai #programming #termux #ide #coding
&lt;/h2&gt;

</description>
      <category>ai</category>
      <category>mobile</category>
      <category>showdev</category>
      <category>tooling</category>
    </item>
    <item>
      <title>Building OrinIDE — A Browser-Based IDE for Android with AI Support</title>
      <dc:creator>Nandan Das</dc:creator>
      <pubDate>Thu, 07 May 2026 15:28:28 +0000</pubDate>
      <link>https://forem.com/nandan_das_369/building-orinide-a-browser-based-ide-for-android-with-ai-support-2hjj</link>
      <guid>https://forem.com/nandan_das_369/building-orinide-a-browser-based-ide-for-android-with-ai-support-2hjj</guid>
      <description>&lt;h1&gt;
  
  
  Building OrinIDE — A Browser-Based IDE for Android with AI Support
&lt;/h1&gt;

&lt;p&gt;For a long time, coding on Android has felt awkward.&lt;/p&gt;

&lt;p&gt;Most mobile coding apps are either:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;too limited,&lt;/li&gt;
&lt;li&gt;too slow,&lt;/li&gt;
&lt;li&gt;dependent on cloud environments,&lt;/li&gt;
&lt;li&gt;or simply not designed for real development workflows.&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%2F8qe1djh4u8c55zp654z7.png" 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%2F8qe1djh4u8c55zp654z7.png" alt=" " width="800" height="465"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;So I started building &lt;strong&gt;OrinIDE&lt;/strong&gt; — a lightweight browser-based IDE designed to run on Android using &lt;strong&gt;Termux + Node.js&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The main goal is simple:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;make mobile development feel practical, lightweight, and actually enjoyable.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And now I’m experimenting with integrating &lt;strong&gt;OpenRouter AI models&lt;/strong&gt; directly into the workflow to make AI-assisted coding available inside the IDE itself.&lt;/p&gt;

&lt;p&gt;The idea behind this project is:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;vibe coding on mobile should actually feel easy.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Current Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;File Explorer&lt;/li&gt;
&lt;li&gt;Browser-Based Code Editor&lt;/li&gt;
&lt;li&gt;Terminal Support&lt;/li&gt;
&lt;li&gt;Local Node.js Backend&lt;/li&gt;
&lt;li&gt;Mobile-Friendly Interface&lt;/li&gt;
&lt;li&gt;Lightweight Architecture&lt;/li&gt;
&lt;li&gt;AI Integration Experiments&lt;/li&gt;
&lt;li&gt;OpenRouter Model Support&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Why Build This?
&lt;/h2&gt;

&lt;p&gt;I wanted a development setup that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;works directly on Android,&lt;/li&gt;
&lt;li&gt;runs locally,&lt;/li&gt;
&lt;li&gt;feels fast,&lt;/li&gt;
&lt;li&gt;stays lightweight,&lt;/li&gt;
&lt;li&gt;and still supports modern workflows.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of depending entirely on cloud IDEs or remote machines, OrinIDE focuses on creating a usable local environment that developers can run directly from their phones.&lt;/p&gt;




&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pkg update &lt;span class="nt"&gt;-y&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; pkg &lt;span class="nb"&gt;install &lt;/span&gt;nodejs-lts &lt;span class="nt"&gt;-y&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; orin-ide &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; orin-ide
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then open:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;http://127.0.0.1:3000
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  npm
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; orin-ide
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Fl87hri47cieygt4d2dku.png" 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%2Fl87hri47cieygt4d2dku.png" alt=" " width="800" height="424"&gt;&lt;/a&gt;&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%2F0rruyehk6y4aqpo2ek56.png" 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%2F0rruyehk6y4aqpo2ek56.png" alt=" " width="800" height="427"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Npm package:
&lt;/h2&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://www.npmjs.com/package/orin-ide" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/orin-ide&lt;/a&gt;
&lt;/h2&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://orinide.netlify.app/" rel="noopener noreferrer"&gt;https://orinide.netlify.app/&lt;/a&gt;
&lt;/h2&gt;

&lt;h2&gt;
  
  
  GitHub
&lt;/h2&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://github.com/nandandas2407-web/orin-ide" rel="noopener noreferrer"&gt;https://github.com/nandandas2407-web/orin-ide&lt;/a&gt;
&lt;/h2&gt;

&lt;h2&gt;
  
  
  Future Plans
&lt;/h2&gt;

&lt;p&gt;Some things currently being explored:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Better AI-assisted workflows&lt;/li&gt;
&lt;li&gt;Smarter terminal integration&lt;/li&gt;
&lt;li&gt;Plugin/extensions system&lt;/li&gt;
&lt;li&gt;Improved mobile UI/UX&lt;/li&gt;
&lt;li&gt;Faster filesystem handling&lt;/li&gt;
&lt;li&gt;Multi-language support&lt;/li&gt;
&lt;li&gt;Better project management tools&lt;/li&gt;
&lt;li&gt;Offline-first workflow improvements&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Still actively improving the project, testing ideas, and experimenting with what mobile development could realistically become.&lt;/p&gt;

&lt;p&gt;Would genuinely appreciate feedback from developers who:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;code on Android,&lt;/li&gt;
&lt;li&gt;use Termux,&lt;/li&gt;
&lt;li&gt;enjoy lightweight workflows,&lt;/li&gt;
&lt;li&gt;or are interested in AI-powered development environments.&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  webdev #nodejs #javascript #opensource #android #termux #ai #openrouter #buildinpublic #coding #programming #developer #npm
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>android</category>
      <category>node</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
