<?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: Nadav Cohen</title>
    <description>The latest articles on DEV Community by Nadav Cohen (@ncamaa).</description>
    <link>https://dev.to/ncamaa</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%2F2188057%2F0569649c-3244-4cdc-bd00-7dfab16d7a03.jpeg</url>
      <title>DEV Community: Nadav Cohen</title>
      <link>https://dev.to/ncamaa</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ncamaa"/>
    <language>en</language>
    <item>
      <title>ForgeTerm: An Open-Source Terminal Emulator for Multi-Project Workflows</title>
      <dc:creator>Nadav Cohen</dc:creator>
      <pubDate>Sun, 08 Mar 2026 20:25:53 +0000</pubDate>
      <link>https://dev.to/ncamaa/forgeterm-an-open-source-terminal-emulator-for-multi-project-workflows-4cca</link>
      <guid>https://dev.to/ncamaa/forgeterm-an-open-source-terminal-emulator-for-multi-project-workflows-4cca</guid>
      <description>&lt;p&gt;If you work on multiple projects simultaneously, you know the pain: opening a terminal, &lt;code&gt;cd&lt;/code&gt;-ing into each project, launching the dev server, starting the test watcher, opening a shell — and doing it all over again every time you start a new session. That's exactly the problem I set out to solve with &lt;strong&gt;ForgeTerm&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is ForgeTerm?
&lt;/h2&gt;

&lt;p&gt;ForgeTerm is an open-source terminal emulator built for developers who juggle multiple projects at once. It's built on Electron + React + xterm.js, and it focuses on one thing: making it effortless to go from "I want to work" to "I'm working" across all your projects at once.&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/codama-dev/forgeterm" rel="noopener noreferrer"&gt;https://github.com/codama-dev/forgeterm&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Workspaces &amp;amp; Auto-Tiling
&lt;/h3&gt;

&lt;p&gt;Group related projects into a workspace and open them all with a single click. ForgeTerm automatically tiles your windows across the screen — side-by-side for two projects, master-detail for three, a 2×2 grid for four, and so on up to six per screen. If you have multiple monitors, you can choose which display each workspace targets.&lt;/p&gt;

&lt;h3&gt;
  
  
  Automatic Sessions
&lt;/h3&gt;

&lt;p&gt;Inside each project, you define named terminal sessions that auto-launch when you open the project. Something like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"projectName"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"My App"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"sessions"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Dev Server"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"pnpm dev"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"autoStart"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Tests"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"pnpm test --watch"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Shell"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"window"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"emoji"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"🚀"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"themeName"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"ocean"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Drop a &lt;code&gt;.forgeterm.json&lt;/code&gt; in any repo and the config travels with it.&lt;/p&gt;

&lt;h3&gt;
  
  
  Per-Project Theming
&lt;/h3&gt;

&lt;p&gt;Every project gets its own color theme so you can tell windows apart at a glance. There are 10 built-in presets, a hex color generator, and Peacock sync for VS Code users. 43 project emojis round out the visual differentiation.&lt;/p&gt;

&lt;h3&gt;
  
  
  Import from VS Code Project Manager
&lt;/h3&gt;

&lt;p&gt;Already using the VS Code Project Manager extension? Import all your projects and tags in one click. It works with VS Code, Cursor, Windsurf, and other forks. Tags with 2+ projects automatically become workspaces.&lt;/p&gt;

&lt;h3&gt;
  
  
  Sidebar Modes
&lt;/h3&gt;

&lt;p&gt;Cycle between full, compact, and hidden sidebar with &lt;code&gt;Cmd+B&lt;/code&gt;. Full mode shows session names and controls. Compact shows dot indicators. Hidden gives you maximum terminal real estate.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Electron (main process, window management, PTY via node-pty)&lt;/li&gt;
&lt;li&gt;React 18 + TypeScript&lt;/li&gt;
&lt;li&gt;xterm.js for terminal rendering&lt;/li&gt;
&lt;li&gt;Zustand for state management&lt;/li&gt;
&lt;li&gt;Vite for bundling&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Download &amp;amp; Build
&lt;/h2&gt;

&lt;p&gt;ForgeTerm v0.2.0 ships as a macOS DMG for Apple Silicon. For Windows, Linux, or Intel Mac, clone the repo and build locally:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/codama-dev/forgeterm.git
&lt;span class="nb"&gt;cd &lt;/span&gt;forgeterm
pnpm &lt;span class="nb"&gt;install
&lt;/span&gt;pnpm build
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Contributing
&lt;/h2&gt;

&lt;p&gt;ForgeTerm is actively looking for contributors! Whether it's a bug fix, a new feature, better docs, or just a suggestion — all contributions are welcome. Check the open issues for things to work on; issues labeled &lt;code&gt;good first issue&lt;/code&gt; are a great starting point.&lt;/p&gt;

&lt;p&gt;Give it a star, try it out, and let me know what you think in the comments!&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>terminal</category>
      <category>productivity</category>
      <category>electron</category>
    </item>
  </channel>
</rss>
