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

推荐订阅源

Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
宝玉的分享
宝玉的分享
量子位
Recent Announcements
Recent Announcements
Martin Fowler
Martin Fowler
J
Java Code Geeks
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
S
SegmentFault 最新的问题
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
小众软件
小众软件
The Cloudflare Blog
Y
Y Combinator Blog
I
InfoQ
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
IT之家
IT之家

The Register

Grafana offers AI assistant for free, warns users not to go mad Right to repair champ Framework punts modular 13in laptop with Core Ultra Series 3 Scotland Yard can keep using live facial recognition on Londoners, say judges UK tribunal sends £2B claim accusing Microsoft of overcharging for licensing to trial Nation-states want to cause harm, not just steal cash - stop handing your cyber defenses to the cheapest contractor Murder, she wrote: Ex-FBI chief wants some ransomware crims charged with homicide Phone-to-satellite use goes into orbit, growing 25% in 8 months macOS ClickFix attacks deliver AppleScript stealers to snarf credentials, wallets Anthropic bakes memory fixes into Bun 1.1.13 as developers complain of leaks The spaghettified DBMS chart that shows Oracle's crown is slowly slipping Yet another ex-ransomware negotiator admits turning rogue after payoff from crimelords FAA grounds Blue Origin's New Glenn as it probes missed satellite delivery 'mishap' AMD's Ryzen 9 9950X3D2 Dual Edition tested: Gratuitous overkill with a price to match AI-assisted intruders pwned Vercel via OAuth abuse and a pilfered employee account Crook claims to leak 'video surveillance footage' of companies Met police trials snoop tech platform in push to cuff more London shoplifters England's school phone ban gets teeth, just in time to bite no one Adaptavist Group breach spawns imposter emails as ransomware crew claims mega-haul Panasonic creates device-locked QR codes to speed facial biometric capture Iran claims US used backdoors to knock out networking equipment during war NASA Inspector fears new spacesuits won’t be ready for Moon landing Vibe coding upstart Lovable denies data leak, cites 'intentional behavior,' then throws HackerOne under the bus Trump-branded datacenter project fails to make itself great, again World's blandest man steps down from CEO job to spend more time in tastefully appointed home Chase got a spiff of $77 million to create one job with New York datacenter Scot becomes second Scattered Spider-linked crook to plead guilty in US You too can build a nuclear battery from junk you have lying around the house Schmoozebots: study finds flattery will get AI everywhere One of Europe's sovereign cloud picks may not be so-sovereign after all New Android development tool designed for robots, not humans
Deno project is going to add cross-platform desktop apps ...
Tim Anderson · 2026-06-24 · via The Register

software

Feature is not yet stable, but will offer easy conversion of web applications

The next major release of Deno, a JavaScript/TypeScript runtime, will include new commands to build cross-platform desktop applications using web technology. 

Deno desktop will compile an application from a plain TypeScript file or from frameworks such as Next.js, Astro, Deno Fresh, TanStack Start or Vite SSR (server-side rendering).

A distinctive feature is that the native WebView is used by default, rather than bundling the Chromium Embedded Framework (CEF). The advantage is much smaller applications. In our quick test, a compiled application using WebView on macOS was around 68.5MB, whereas using CEF, which is also an option, the size was 308.9MB (though the docs suggest 150MB as typical) and startup was slower.

A Deno desktop application, also showing memory usage as reported by Activity Monitor on macOS

A Deno desktop application, also showing memory usage as reported by Activity Monitor on macOS
Tim Anderson

The trade-off is that CEF provides all the features of Chromium and consistent rendering across platforms. Without CEF, it is a challenge to ensure the WebView on all supported platforms will work as expected, particularly since users may install on older machines with out-of-date native web browsers. This is a particular problem with macOS and Safari.

Deno desktop has a further option, called Raw, which has no web engine. Developers get window management and can draw a user interface with WebGPU, the Skia library, or their own custom rendering.

A Deno desktop application, other than one using Raw, includes a local web server, which means that developers can easily port web applications. According to the docs, the cost of "a single network hop" is negligible in most cases. That said, there is also an option for in-process binding, which exposes a Deno function directly to the WebView or CEF. 

Deno Desktop supports native menus and context menus (right-click), native dialogs for alerts and confirmations, and notifications via the Web Notifications API, which appear as native notifications. File picker dialogs are not yet supported, other than by the web file input type, or drag and drop. There is no separate clipboard API yet. Mobile applications are not yet supported, though it is planned.

There are plenty of existing options for building desktop applications with web technology, including the popular Electron used by many well-known applications but sometimes disliked for its high resource usage. The Deno desktop docs include a comparison with Electron, Electrobun, Tauri, and Dioxus. Deno desktop looks well thought-out, though it is not yet stable, and we noticed issues such as the window close button not working in macOS using WebView, as well as friction trying to get it working with some web frameworks.

The broader question, perhaps, is whether this will help the Deno project gain market share. It began as an effort to improve on Node.js, and has been somewhat upstaged by the Bun project now owned by Anthropic. One of the problems for Deno is that the Node.js ecosystem is so entrenched that the project has had to retrofit Node.js compatibility, diverting engineering time from other potential features.

One Deno user, Hong Minhee, posted that they liked Deno initially because it avoided the pain of Node.js. "No configuration files, no node_modules, no agonizing over which package manager to use." Now though, "Deno is spending more and more of its energy catching up to Node.js," while on the other side of the camp, Node.js has added features such as TypeScript compatibility. "Why didn't Deno hold the course?" they ask.

The quick answer is that the pull of the established Node.js ecosystem was too strong. Deno desktop looks promising and could provide another reason to use Deno if it works well, though there is also a risk of further diluting the resource available for the core runtime.®