<?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: Liran</title>
    <description>The latest articles on DEV Community by Liran (@ilirans).</description>
    <link>https://dev.to/ilirans</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%2F3935354%2F60ccb45d-a3fa-41bf-89d7-2f89698e3827.png</url>
      <title>DEV Community: Liran</title>
      <link>https://dev.to/ilirans</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ilirans"/>
    <language>en</language>
    <item>
      <title>I built a cross-platform, local-first note app with E2EE and BYOK AI (Tauri + Expo)</title>
      <dc:creator>Liran</dc:creator>
      <pubDate>Sat, 16 May 2026 19:13:21 +0000</pubDate>
      <link>https://dev.to/ilirans/i-built-a-cross-platform-local-first-note-app-with-e2ee-and-byok-ai-tauri-expo-1gmn</link>
      <guid>https://dev.to/ilirans/i-built-a-cross-platform-local-first-note-app-with-e2ee-and-byok-ai-tauri-expo-1gmn</guid>
      <description>&lt;p&gt;Hi, I've been working on a note taking app called &lt;strong&gt;&lt;a href="https://annota.online" rel="noopener noreferrer"&gt;Annota&lt;/a&gt;&lt;/strong&gt;. It started as a fun hobby project but I kept adding more and more features and it became a very refined product with many features.&lt;/p&gt;

&lt;p&gt;I’m building it as a monorepo, and I just released the &lt;a href="https://github.com/iLiranS/Annota/releases/latest" rel="noopener noreferrer"&gt;Windows&lt;/a&gt; .exe and an iOS/MacOS TestFlight beta. I'm looking for some early feedback from other developers before I try to launch it officially.&lt;br&gt;
It's also &lt;a href="https://github.com/iLiranS/Annota" rel="noopener noreferrer"&gt;open sourced&lt;/a&gt; if you want to check the code-base.&lt;/p&gt;

&lt;p&gt;Here is a quick look at the stack and the features :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Desktop (Windows &amp;amp; MacOS) : Tauri + React&lt;/li&gt;
&lt;li&gt;Mobile (iOS, Android soon) : React Native + Expo&lt;/li&gt;
&lt;li&gt;Local Database : SQLite with SQLCipher for local encryption&lt;/li&gt;
&lt;li&gt;Backend : Supabase&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%2Ftb3wznqmbzu4m4esc1ka.webp" 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%2Ftb3wznqmbzu4m4esc1ka.webp" alt=" " width="800" height="481"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Under The Hood: Security &amp;amp; Data
&lt;/h3&gt;

&lt;p&gt;Privacy is a big deal for me, so the architecture is designed around owning your data:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Local-First E2EE&lt;/strong&gt;: Your database is encrypted locally using SQLCipher. If you choose to use the upcoming cloud sync, your data is AES-256 encrypted locally before it ever leaves your device.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;File Optimization&lt;/strong&gt;: I implemented a double-hashing file duplication recognition system. If you copy-paste the same image or file multiple times, it only saves it once under the hood.&lt;/li&gt;
&lt;li&gt;FTS5 : Lightning-fast full-text search across all notes.&lt;/li&gt;
&lt;li&gt;Safety Net : Local version history for your notes, just in case you mess something up.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  The Editor
&lt;/h3&gt;

&lt;p&gt;I wanted an editor that could handle everything a dev throws at it without feeling bloated.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Supports Code blocks, Mermaid diagrams, and LaTeX.&lt;/li&gt;
&lt;li&gt;Custom components built-in, like Flashcards for studying.&lt;/li&gt;
&lt;li&gt;Fully customizable: tweak the fonts, sizing, spacing, and UI to your liking.&lt;/li&gt;
&lt;li&gt;Standard folder structure and tagging system for organization.&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%2F7x8uz278y4erkwtwb284.webp" 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%2F7x8uz278y4erkwtwb284.webp" alt=" " width="800" height="446"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  AI Integration (Ollama &amp;amp; BYOK)
&lt;/h3&gt;

&lt;p&gt;I didn't want to force users into a proprietary AI subscription.&lt;br&gt;
&lt;strong&gt;Local AI&lt;/strong&gt;: Full integration with Ollama so you can run models entirely locally.&lt;br&gt;
&lt;strong&gt;BYOK (Bring Your Own Key)&lt;/strong&gt;: Plug in your API keys for OpenAI, Anthropic, or Google.&lt;br&gt;
&lt;strong&gt;Clever Context&lt;/strong&gt;: The AI is token-minimized by default to save you money on API calls.&lt;br&gt;
&lt;strong&gt;Features&lt;/strong&gt;: You can chat with your notes, highlight text for a quick rewrite, ask questions about specific selections, and even toggle on web search or "thinking" modes for supported models.&lt;/p&gt;

&lt;h3&gt;
  
  
  Pricing
&lt;/h3&gt;

&lt;p&gt;All the local features are 100% free.&lt;br&gt;
When I officially launch, the only thing that will cost money is the cloud sync (to cover server costs), but there will be a limited free tier for that as well.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it out!
&lt;/h2&gt;

&lt;p&gt;I’d love for you to try it out and try to break it. I'm actively adding features and improving it day after day.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Website: &lt;a href="https://www.annota.online" rel="noopener noreferrer"&gt;https://www.annota.online&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Windows Download: &lt;a href="https://github.com/iLiranS/Annota/releases/latest" rel="noopener noreferrer"&gt;Github Release&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Apple TestFlight: &lt;a href="https://testflight.apple.com/join/mmgSW44D" rel="noopener noreferrer"&gt;Link&lt;/a&gt;
Thanks for your attention :)&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>productivity</category>
      <category>ai</category>
      <category>programming</category>
      <category>software</category>
    </item>
  </channel>
</rss>
