<?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: Kylmora</title>
    <description>The latest articles on DEV Community by Kylmora (@kylmora).</description>
    <link>https://dev.to/kylmora</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4122262%2F33bdfd10-22ac-437a-9571-0258ad25866b.png</url>
      <title>DEV Community: Kylmora</title>
      <link>https://dev.to/kylmora</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kylmora"/>
    <language>en</language>
    <item>
      <title>I built a native macOS browser with no dependencies - my first open source project</title>
      <dc:creator>Kylmora</dc:creator>
      <pubDate>Wed, 16 Sep 2026 13:39:16 +0000</pubDate>
      <link>https://dev.to/kylmora/i-built-a-native-macos-browser-with-no-dependencies-my-first-open-source-project-2eg3</link>
      <guid>https://dev.to/kylmora/i-built-a-native-macos-browser-with-no-dependencies-my-first-open-source-project-2eg3</guid>
      <description>&lt;p&gt;I've been using Arc, then Zen, then back to Safari, and I kept running into the same thing: either the browser was fast and rigid, or it was flexible and ate my RAM. So over the last few months I built the one I wanted, and last week I put it on GitHub.&lt;/p&gt;

&lt;p&gt;It's called &lt;strong&gt;&lt;a href="https://kylmora.com" rel="noopener noreferrer"&gt;Kylmora&lt;/a&gt;&lt;/strong&gt;. It's an AppKit app over the system WebKit — the same engine Safari uses — with one window and Spaces inside it. No bundled Chromium, no Swift package dependencies, nothing but Apple's own frameworks.&lt;/p&gt;

&lt;p&gt;This is my first open source project, so please be gentle with it. If something is broken or missing, tell me and I'll fix it as fast as I can.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why no bundled engine
&lt;/h2&gt;

&lt;p&gt;Every Electron or Chromium-based browser ships a copy of the web. That's where the hundreds of megabytes come from, and it's why they're slow to launch.&lt;/p&gt;

&lt;p&gt;macOS already has WebKit in it. If you build on &lt;code&gt;WKWebView&lt;/code&gt;, you get the engine for free, you get Apple's security updates for free, and your app is just the shell around it. The whole of Kylmora is a few hundred Swift files.&lt;/p&gt;

&lt;p&gt;Here's what that costs, measured with 35 tabs restored and one page showing:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Metric&lt;/th&gt;
&lt;th&gt;Value&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Release bundle&lt;/td&gt;
&lt;td&gt;5.2 MB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Window on screen&lt;/td&gt;
&lt;td&gt;0.62 s warm, 0.97 s cold&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Browser process at the window&lt;/td&gt;
&lt;td&gt;38 MB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;WebKit content process, one page&lt;/td&gt;
&lt;td&gt;~200 MB — that's the page's, not mine&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The trade is real and I want to be honest about it: you get Safari's engine, which means Safari's web compatibility and Safari's quirks. If a site only works in Chrome, it will only work in Chrome here too. I decided that was worth 5 MB.&lt;/p&gt;

&lt;h2&gt;
  
  
  Spaces are identities, not just tab groups
&lt;/h2&gt;

&lt;p&gt;This is the part I actually built the browser for. Each Space has its own cookie jar, so the same site can be signed in as a different account in each one. Work Gmail in one, personal in another, a client's dashboard in a third — no profile switching, no separate windows.&lt;/p&gt;

&lt;p&gt;Each Space gets its own look (light/dark, colour or gradient, a rim around the window) so a glance at any corner of the screen tells you which identity is in front. And Space Routing rules send matching addresses to the right Space, so a link from Slack lands where it belongs.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tabs that aren't there until you look at them
&lt;/h2&gt;

&lt;p&gt;A tab you haven't shown has no web view and no WebKit process behind it. Twenty-five restored tabs cost one content process, because twenty-four of them are still just a row in the sidebar with a title and a URL.&lt;/p&gt;

&lt;p&gt;Background tabs sleep after an idle period and under memory pressure, then come back where they were — scroll position, form contents, history.&lt;/p&gt;

&lt;h2&gt;
  
  
  A few other things that are in there
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Boosts&lt;/strong&gt; — your own CSS and JS per site, plus a universal dark mode&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Split view&lt;/strong&gt; — side by side, stacked, or 2×2&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Live folders&lt;/strong&gt; — a folder that fills itself from an RSS feed or a GitHub repo's issues and PRs&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Command palette&lt;/strong&gt; (⌘K) that ranks tabs, Spaces, history, bookmarks and commands together&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Translation on Apple's on-device model&lt;/strong&gt; — the text never leaves the Mac&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Extensions&lt;/strong&gt; on WebKit's own engine, which reads the Chrome/Firefox manifest format&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Content blocking&lt;/strong&gt; on WebKit content rule lists, fed by EasyList and uBlock Origin's filters&lt;/li&gt;
&lt;li&gt;Passwords in the macOS login Keychain, the same store Safari uses, so iCloud Keychain just works&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What's deliberately not in it
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;No AI.&lt;/strong&gt; No assistant, no summariser, no chat sidebar. Nothing about you or your Mac is sent anywhere. The update check asks for a JSON file once a day and that's the only request the app makes on its own.&lt;/p&gt;

&lt;p&gt;Also: nothing in the UI is a mock. If a control is there, it does something. Where a feature genuinely can't work on macOS, it says so instead of pretending.&lt;/p&gt;

&lt;h2&gt;
  
  
  Please break it
&lt;/h2&gt;

&lt;p&gt;It's Apache-2.0, macOS 14+, and there's a signed, notarized &lt;code&gt;.dmg&lt;/code&gt; on the releases page.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Code: &lt;a href="https://github.com/kylmora/kylmora" rel="noopener noreferrer"&gt;https://github.com/kylmora/kylmora&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Site: &lt;a href="https://kylmora.com" rel="noopener noreferrer"&gt;https://kylmora.com&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Issues: &lt;a href="https://github.com/kylmora/kylmora/issues" rel="noopener noreferrer"&gt;https://github.com/kylmora/kylmora/issues&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'm one person and this is my first open source project, so I'm sure there's plenty I've got wrong. &lt;strong&gt;If you hit a bug, open an issue and I'll try to have it fixed within a day or two.&lt;/strong&gt; Same for features — if there's something your current browser does that you'd miss, tell me and I'll look at whether it fits. A lot of what's already in there came from people describing what they wanted somewhere in a thread.&lt;/p&gt;

&lt;p&gt;Thanks for reading. Any feedback at all is genuinely welcome.&lt;/p&gt;

</description>
      <category>swift</category>
      <category>macos</category>
      <category>opensource</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
