High-performance desktop applications with Python and modern web frameworks. Fast by design. Minimal by choice.
React • Vue • Svelte • Next.js • Vanilla JS
npx create-positron-app@latest
from positron import App, BrowserWindow, ipc_main
app = App()
@ipc_main.handle('core:compute')
def handle_compute(event, data):
# Heavy Python logic here
result = {"status": "success", "payload": data}
return result
def init():
win = BrowserWindow({
'title': 'Positron App',
'width': 1200,
'height': 800,
'frame': False
})
win.load_url('http://localhost:5173')
app.when_ready(init)
app.run()
01. FINISHED
02. BUILDING
03. PIPELINE
Positron includes complete examples for multiple frameworks:
examples/react-app - Vite + React 18examples/nextjs-app - Next.js 16 with SSRexamples/vue-app - Vue 3 + Viteexamples/svelte-app - Svelte 5 + Viteexamples/vanilla-app - Pure HTML/CSS/JSAll examples feature the same dark minimalist UI and full IPC support.
POSITRON CORE ALPHA
© 2026 POSITRON DEVELOPERS