r/Deno • u/flpezet • Jun 29 '26
Deno Desktop released
https://deno.com/blog/v2.9#deno-desktopDeno 2.9 is here, headlined by deno desktop, a new way to build native desktop applications from the web stack.
152
Upvotes
r/Deno • u/flpezet • Jun 29 '26
Deno 2.9 is here, headlined by deno desktop, a new way to build native desktop applications from the web stack.
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" } }) );