<?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: Emil Poghosyan</title>
    <description>The latest articles on DEV Community by Emil Poghosyan (@poghdev).</description>
    <link>https://dev.to/poghdev</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%2F3953897%2F1cf15231-d9e6-4251-ae4e-dc7a90db79ac.jpeg</url>
      <title>DEV Community: Emil Poghosyan</title>
      <link>https://dev.to/poghdev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/poghdev"/>
    <language>en</language>
    <item>
      <title>Evcode:I built a terminal IDE in Rust that runs on 7MB of RAM — Evcode 1.0.0</title>
      <dc:creator>Emil Poghosyan</dc:creator>
      <pubDate>Wed, 27 May 2026 08:36:14 +0000</pubDate>
      <link>https://dev.to/poghdev/evcodei-built-a-terminal-ide-in-rust-that-runs-on-7mb-of-ram-evcode-100-1459</link>
      <guid>https://dev.to/poghdev/evcodei-built-a-terminal-ide-in-rust-that-runs-on-7mb-of-ram-evcode-100-1459</guid>
      <description>&lt;p&gt;I got tired of waiting for VS Code to load over SSH.&lt;/p&gt;

&lt;p&gt;There was no grand vision behind this. Just a very specific frustration — spinning up a remote session, watching Electron slowly come alive, and wondering if there was a better way to just edit files fast.&lt;/p&gt;

&lt;p&gt;So I built Evcode. Version 1.0.0 shipped this week.&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%2F5659si3w3rgvde8cknhv.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%2F5659si3w3rgvde8cknhv.jpeg" alt=" " width="800" height="408"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What it is&lt;/p&gt;

&lt;p&gt;A terminal IDE written in Rust. No GUI. No Electron. No configuration files you spend a weekend learning. You run it, it works.&lt;/p&gt;

&lt;p&gt;Built with Ratatui + Crossterm. Idle memory usage is around 7–10MB.&lt;/p&gt;

&lt;p&gt;cargo install evcode&lt;/p&gt;

&lt;p&gt;What changed in 1.0.0&lt;/p&gt;

&lt;p&gt;Earlier versions used a standard String buffer — fine for small files, but not scalable. In 1.0.0, that was replaced with a rope-based engine using ropey, a B-Tree structure where edits are O(log n). Now opening a 500k-line log file feels the same as opening a small config.&lt;/p&gt;

&lt;p&gt;Alongside that, viewport virtualization was introduced — the renderer now processes only visible lines. File size no longer affects CPU usage in the same way.&lt;/p&gt;

&lt;p&gt;Async LSP runs on a Tokio worker thread and communicates with the UI through mpsc channels. It took a few iterations to get right, but now the UI thread never blocks on LSP responses.&lt;/p&gt;

&lt;p&gt;Ghost Snap&lt;/p&gt;

&lt;p&gt;Alt+S creates an instant snapshot — first in RAM for speed, then saved to .evcode/snaps/ on disk for safety. Alt+D overlays the previous version on top of the current file. Alt+R restores it.&lt;/p&gt;

&lt;p&gt;Yes, I know git exists. This is for that messy 10-minute window before a commit.&lt;/p&gt;

&lt;p&gt;Try it&lt;/p&gt;

&lt;p&gt;cargo install evcode&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/poghdev/Evcode-ide" rel="noopener noreferrer"&gt;https://github.com/poghdev/Evcode-ide&lt;/a&gt;&lt;br&gt;
Site: &lt;a href="https://products.eeive.com/evcode.html" rel="noopener noreferrer"&gt;https://products.eeive.com/evcode.html&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you run into issues — LSP problems, rendering quirks in certain terminals, anything — open an issue. The codebase is still small and response time is fast.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>rust</category>
      <category>performance</category>
      <category>terminal</category>
    </item>
  </channel>
</rss>
