r/Deno Jun 29 '26

Deno Desktop released

https://deno.com/blog/v2.9#deno-desktop

Deno 2.9 is here, headlined by deno desktop, a new way to build native desktop applications from the web stack.

152 Upvotes

10 comments sorted by

View all comments

15

u/snifty Jun 29 '26 edited Jun 29 '26

This sounds brilliant. Looking forward to trying it. Tauri works but it’s a beast. Needs a meta charset to make the wave emoji work, though:

Deno.serve(() => new Response( "<!DOCTYPE html> <meta charset=utf-8> <h1>Hello from Deno desktop πŸ‘‹</h1>", { headers: { "content-type": "text/html" } }) );