<?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: abdallah mohammad</title>
    <description>The latest articles on DEV Community by abdallah mohammad (@abdallah_mohammad).</description>
    <link>https://dev.to/abdallah_mohammad</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%2F3727210%2F76fb6177-22b2-4e1c-9a92-16d1ba7855f0.png</url>
      <title>DEV Community: abdallah mohammad</title>
      <link>https://dev.to/abdallah_mohammad</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abdallah_mohammad"/>
    <language>en</language>
    <item>
      <title>Why I'm Building Amethyst: A Local-First Markdown App for People Who Just Want to Write ✍️</title>
      <dc:creator>abdallah mohammad</dc:creator>
      <pubDate>Sun, 03 May 2026 18:27:05 +0000</pubDate>
      <link>https://dev.to/abdallah_mohammad/why-im-building-amethyst-a-local-first-markdown-app-for-people-who-just-want-to-write-4h66</link>
      <guid>https://dev.to/abdallah_mohammad/why-im-building-amethyst-a-local-first-markdown-app-for-people-who-just-want-to-write-4h66</guid>
      <description>&lt;p&gt;Let’s be honest: the world of note-taking is currently split between "too simple" and "way too complex." I found myself constantly switching between tools that were either missing core features or so bloated that they felt like they owned my data.&lt;/p&gt;

&lt;p&gt;So, I started building &lt;strong&gt;Amethyst&lt;/strong&gt;. It’s an open-source (AGPL-3.0) Markdown application designed to be simple, fast, and entirely local.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Concept: What is a "Facet"? 📂
&lt;/h2&gt;

&lt;p&gt;In Amethyst, we use a concept called a &lt;strong&gt;Facet&lt;/strong&gt;. You can think of a Facet exactly like a &lt;strong&gt;Vault&lt;/strong&gt;. &lt;/p&gt;

&lt;p&gt;It’s a local directory on your computer that the app "watches" in real-time[cite: 1]. While the current version focuses on a streamlined single-workspace experience, the architecture is designed to support multiple Facets in the future, allowing you to jump between different projects or knowledge bases effortlessly.&lt;/p&gt;

&lt;h2&gt;
  
  
  What’s Under the Hood? 🛠️
&lt;/h2&gt;

&lt;p&gt;According to the &lt;strong&gt;README.md&lt;/strong&gt;, I wanted an "architecture-first" approach[cite: 1]. This means the app isn't just a basic text editor; it's a robust system built on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Electron, React, and Vite:&lt;/strong&gt; For a smooth, cross-platform desktop experience.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;CodeMirror 6:&lt;/strong&gt; A powerful editor foundation that feels snappy and responsive.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;A Real-Time Watcher:&lt;/strong&gt; Using Chokidar to ensure that if you change a file in your folder, Amethyst sees it instantly.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Features That Actually Help You Work 🚀
&lt;/h2&gt;

&lt;p&gt;Based on the latest updates in the &lt;strong&gt;CHANGELOG.md&lt;/strong&gt;, here is what you can do in version &lt;code&gt;0.5.0&lt;/code&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Keyboard-First Navigation:&lt;/strong&gt; A centralized shortcut manager so you can create notes (&lt;code&gt;Ctrl+N&lt;/code&gt;) or jump between folders without leaving the home row.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Tree View with Drag &amp;amp; Drop:&lt;/strong&gt; Organise your hierarchy intuitively by moving notes and notebooks exactly where you want them.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;LaTeX Math Support:&lt;/strong&gt; For the engineers and students out there, you can write and preview complex mathematical equations natively.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Context Menus &amp;amp; Toasts:&lt;/strong&gt; Right-click support for quick actions and a global notification system that gives you instant feedback on every save or move.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  See it in Action:
&lt;/h3&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%2Focnut0fr42777frigy9n.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%2Focnut0fr42777frigy9n.png" alt="Screenshot of the App" width="800" height="522"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Where We’re Going (The Roadmap) 📍
&lt;/h2&gt;

&lt;p&gt;I’m working toward a stable &lt;code&gt;1.0.0&lt;/code&gt; release. Here’s a peek at what’s landing soon:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;v0.6.0:&lt;/strong&gt; Safe deletion with &lt;code&gt;.trash&lt;/code&gt; logic and debounced autosave.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;v0.7.0:&lt;/strong&gt; The "Command Palette" (&lt;code&gt;Ctrl+Shift+P&lt;/code&gt;) and "Quick Open" (&lt;code&gt;Ctrl+P&lt;/code&gt;).&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;v1.0.0:&lt;/strong&gt; Native PDF/HTML export and a complete keyboard cheat-sheet.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🤝 Open Source &amp;amp; Community
&lt;/h2&gt;

&lt;p&gt;Amethyst is and will always be open-source. I’m looking for active users and contributors to help shape the direction of the "Facet" system.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Check out the repo here:&lt;/strong&gt; &lt;a href="https://github.com/abdallah-moh1/amethyst" rel="noopener noreferrer"&gt;https://github.com/abdallah-moh1/amethyst&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you’re a developer who loves clean architecture and Markdown, I’d love to hear your thoughts.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is the one thing your current note-taking app does that drives you crazy? Let's talk in the comments!&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>opensource</category>
      <category>productivity</category>
      <category>react</category>
    </item>
  </channel>
</rss>
