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

推荐订阅源

IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
U
Unit 42
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
雷峰网
雷峰网
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
P
Proofpoint News Feed
The Cloudflare Blog
D
Docker
大猫的无限游戏
大猫的无限游戏

The Register - Special Features

Troops’ phones gave away location data to foreign adversaries Qualcomm picks bad time to pitch a $300 laptop platform AI agents get their own phone directory built atop DNS Carnival confirms ShinyHunters cruised off with 6M customer records after April breach Google engineer accused of turning Year in Search secrets into Polymarket payday Are we human? India's cyber agency sets clock at 12 hours to tackle exploited bugs as AI turns up the heat Broadcom gets early start on WiFi 8 with next-gen wireless routing kit Are we human? Microsoft Excel champ proves he still has the formula Anthropic co-founder hallucinates ghost in the machine Anthropic co-founder hallucinates ghost in the machine NASA plans Moon Base buildout with rovers, drones, cargo landers MyPillow must decide whether to be firm or soft as ransomware crims demand pay Starship shows it can deploy satellites, but Moon mission clock still ticks Huawei's chip law looks less like Moore and more like marketing Experts pour cold borscht on Farage's Russian hack claim Logitech unveils a cushioned mouse for all-day use AI eyes scanning for bugs create a worrisome Linux security trend A Russian speaker and jailbroken Gemini went on a hacking spree and emptied at least one MAGA victim's crypto wallets AI datacenter boom collides with US grid reality Media giant settles for $930k amid user-snooping allegations AT&T sues to ditch Cali copper phone lines to save billions FBI warns of Kali365 as device code phishing soars Techie claims Trump Mobile website was leaking thousands of people's data BOFH: Vibe-coded solutions arrive for problems nobody has Dems slam Trump for making cybersecurity hold out the tin cup while splurging on ballroom and Jan. 6 'slush fund' Google explains how it will infuse ads into AI answers AI is getting pricey, but relief is coming, but not for you Deus ex machina: Half of US Christians trust AI's spiritual advice
Deno project is going to add cross-platform desktop apps ...
Tim Anderson · 2026-06-24 · via The Register - Special Features

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.®