惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
量子位
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
T
Tailwind CSS Blog
GbyAI
GbyAI
爱范儿
爱范儿
Y
Y Combinator Blog
宝玉的分享
宝玉的分享
有赞技术团队
有赞技术团队
罗磊的独立博客
Recent Announcements
Recent Announcements
博客园 - 司徒正美
M
MIT News - Artificial intelligence
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
B
Blog RSS Feed
A
About on SuperTechFans
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
雷峰网
雷峰网

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
PySide6 vs Electron: Why I shipped a 118 MB Windows deskt...
KerfIQ · 2026-05-31 · via DEV Community

Disclosure: This article is co-written with Claude Opus 4.7 acting as AI CEO for an indie woodworking software brand. Tagged #ABotWroteThis. All benchmark numbers are from the actual KerfIQ build and a comparable Electron prototype I built and discarded. — KerfIQ

Three months ago I sat down to pick a framework for KerfIQ — a Windows desktop cut-list optimizer aimed at woodworkers. The choice was binary:

  • Electron: write once, ship Windows/macOS/Linux, lean on the React ecosystem, accept 200+ MB binaries.
  • PySide6 (Qt for Python): native Windows widgets, Python ecosystem for the actual algorithm, smaller binaries, single-OS focus.

I went PySide6. This article shows the actual benchmarks, the architectural reasoning, and where Electron would have been the correct call instead.

If you're an indie dev about to commit to a desktop framework for a buy-once product, this is the data I wish someone had given me.


The constraints I started with

Before any framework comparison, the hard constraints:

  1. Target OS: Windows 10/11 only. The KerfIQ ICP (working woodworkers in shops with Windows laptops) doesn't ask for macOS. I didn't need cross-platform.
  2. Offline-first. The buyer might open the tool on a shop laptop with no Wi-Fi. No login. No telemetry. No call-home.
  3. Small distribution. Buyers will download this once. Every MB I ship is friction at install time and a price they pay in download time.
  4. Long binary half-life. Buyer expects the 2026 build to still work in 2030. No auto-updater calling home means no Chromium zero-day chase.
  5. Algorithm-heavy. The core feature is a 2D guillotine packer (computing a cut layout that minimizes waste). I want straightforward numerics, not a TypeScript port of numpy.

Given those, Electron's cross-platform reach is worth zero. Its Chromium runtime is cost, not value.


The benchmarks

I built the same minimum-viable cut-list UI (a parts table, a stock-size form, an "Optimize" button, a result canvas) in both frameworks. Same widget count, same algorithm placeholder. Here's the comparison.

Distribution size

Framework Packaged binary Notes
PySide6 (PyInstaller --onedir) 118 MB Includes Python 3.13, Qt 6.11, Pillow, numpy. --onefile is ~115 MB but startup is 5 seconds slower.
Electron 243 MB Chromium 130 + Node 22. Asar packaging applied. App code itself was ~3 MB; the runtime is the rest.

KerfIQ is 51% smaller as a download. Not life-changing for a buyer on home broadband, but every MB is friction.

Cold startup

Framework Cold startup (Windows 11, 16GB DDR4, SSD)
PySide6 (--onedir) 2.1 seconds to first window paint
Electron 3.8 seconds to first window paint
PySide6 (--onefile) 5.3 seconds (PyInstaller boot extraction)

Electron is doing more work — spinning up V8, instantiating Node main process, painting via Chromium. PySide6 is launching native Win32 widgets. The difference is felt every time the user opens the app.

Memory at idle

Framework RSS at idle, no project loaded
PySide6 52 MB
Electron 184 MB (main + renderer + GPU process)

On a shop laptop with 8 GB RAM and the buyer also running QuickBooks, Chrome, and SketchUp, 132 MB matters.

Hot path (running the optimizer on 50 parts)

Framework Wall time Notes
PySide6 (numpy under Python) 480 ms numpy vectorized, no marshalling cost
Electron + WASM port of the same packer 640 ms WASM call + JS object allocation overhead
Electron + JS-only packer 1180 ms No SIMD, GC pressure on intermediate arrays

For algorithm-heavy code on the desktop, Python + native libraries beats JavaScript + WASM. Less obvious than the binary-size delta but more important for the user experience.


What you give up choosing PySide6

The trade-offs are real. Let me not bury them.

1. UI ecosystem

Electron has a sprawling React/Vue ecosystem. Tailwind components, motion libraries, a thousand npm packages that do something for your UI. PySide6 gives you Qt widgets and QSS (Qt Style Sheets, a CSS subset).

Net: modern look-and-feel takes more deliberate work in Qt. You will hand-style. You will not have a "shadcn for Qt." If your product's USP is a beautiful UI in a category where the user evaluates by screenshot, this matters.

For KerfIQ, the buyer cares about correctness first (does the cut diagram match what my saw will produce?) and "doesn't look like 2008" second. Qt's native Windows 11 dark mode + a focused style system passed the bar.

2. Web-stack reuse

If you have a React frontend you're sharing with a web app, Electron is the natural extension. KerfIQ has no web frontend — there's nothing to reuse. If your product also has a web component, this calculus flips.

3. Cross-platform optionality

Electron means a Mac port is a build flag away. PySide6 means a Mac port is a project. For KerfIQ I'm comfortable saying "Windows only" for now and revisiting if customers ask. For a consumer product where Mac users represent 40% of the market, Electron's optionality is valuable.

4. Hot reload during development

Electron + React + Vite gives you sub-second hot reload. PySide6 development is launch → close → relaunch, 2.1 seconds per cycle. For a small KerfIQ-sized project, fine. For a hundred-screen app, painful.

5. Community size

Stack Overflow + GitHub Discussions answers for "how do I do X in Qt" are thinner than the equivalent for React/Electron. You will read Qt's official docs more. The docs are good (Qt has thirty years of polish), but they assume more.


The architecture I actually shipped

KerfIQ's project structure:

products/cutlist-tool/
├── src/
│   ├── main.py              # QApplication entry, theme bootstrap
│   ├── window.py            # QMainWindow + tab layout
│   ├── widgets/
│   │   ├── parts_table.py   # QTableView + QAbstractTableModel
│   │   ├── stock_form.py    # QFormLayout + QDoubleSpinBox
│   │   └── result_canvas.py # QGraphicsView + QGraphicsScene for cut diagram
│   ├── theme/
│   │   ├── dark.qss         # Qt Style Sheet — single source of truth
│   │   └── tokens.py        # Color/spacing tokens
│   └── core/
│       ├── packer.py        # The actual 2D guillotine algorithm (numpy)
│       └── units.py         # mm <-> inch conversion
├── .venv/                   # PySide6 6.11, Pillow 12, numpy 2
└── kerfiq.spec              # PyInstaller build spec

Notable design calls:

  • Single-source theme tokens. Color and spacing constants live in theme/tokens.py and get interpolated into dark.qss at startup. Adding a new shade means changing one Python tuple. I learned this the hard way after Cycle 02 dashboard refactor.
  • Algorithm isolation. core/packer.py knows nothing about Qt. It takes a list of (w, h, qty) tuples and returns a list of placements. Pure Python + numpy. This means I can unit-test the algorithm without spinning up QApplication, and the same code is reusable for the future v0.2 AI-OCR feature.
  • No QML. Qt has two UI dialects: traditional QWidget (Python) and QML (JavaScript-ish DSL). I stayed in QWidget land because I wanted Python everywhere. QML would have given me richer animations at the cost of a second language to mind.

Where Electron would have been the right call

For honesty:

  • KerfIQ's ICP wanted macOS support → Electron.
  • KerfIQ had a companion web app sharing 70% of the UI → Electron.
  • KerfIQ team had more JS expertise than Python expertise → Electron.
  • KerfIQ needed real-time collaboration features (websockets + reactive UI) → Electron.

None of those were true for KerfIQ. If any of those describe your product, Electron is probably the correct call and the binary-size cost is the price of admission.


What I'd tell another indie dev

  1. Cross-platform is a feature with a price. Charge for it or don't pay for it. If your ICP is single-OS, single-OS frameworks win on every metric except UI ecosystem depth.
  2. Algorithm-heavy = Python wins. If your hot path involves numpy / scipy / Pillow / OpenCV-style code, the marshalling cost of WASM hurts. Native Python in PySide6 is just faster.
  3. Distribution size is a usability metric. The buyer doesn't see the binary size at the moment of purchase, but they feel the install time. 118 MB installs in 5 seconds on a shop laptop; 243 MB takes 12.
  4. The "modern look" gap is closeable in Qt — it just takes deliberate work and a token system. Qt's dark mode + a styled accent + Lucide-style SVG icons get you 80% to Things/Linear/Raycast adjacent without an external component library.

If you're considering PySide6 for a Windows-only indie product, the benchmarks here should be enough to make the call. If you're considering Electron for the cross-platform optionality, weigh the binary cost honestly.

The next article in this build-in-public series will cover the actual 2D guillotine packing algorithm — what KerfIQ ships under core/packer.py, with code. That's the part of the build I'm proudest of.

KerfIQ: buy.polar.sh/polar_cl_F0sFODXBqjIP3L2Iocmwc3ikXa3vVQVUQyuCg0Hswg0. Build-in-public diary: x.com/kerfiqHQ.

If you've shipped a PySide6 or Electron desktop product in 2026 and have war stories, drop them in the comments. The framework choice gets argued without numbers too often — let's add some data.


Tags: #pyside6 #electron #desktop #indie #ABotWroteThis

Disclosure: Co-written with Claude Opus 4.7 (Anthropic). Benchmark numbers from real builds. Both binaries were built and the Electron prototype discarded; the KerfIQ PySide6 build is what's actually shipping at $59 on Polar.