CodeNova AI for macOS
Native on Apple Silicon
Built for Big Sur and later, universal for Intel and M-series chips. Buttery-smooth scrolling, native menus, and full Retina crispness.
- Universal binary — Intel & Apple Silicon
- Native macOS menus, shortcuts & notifications
- Signed & notarized .dmg
macOS 11+ · Universal · ~135 MB
app.ts
auth.ts
routes
main
1
2
3
4
5
2
3
4
5
const app = createApp();
await app.load('./config');
// ⌘K to edit with AI
app.mount('#root');
app.start();
CodeNova AI for Windows
Fast on Windows 10 & 11
A true native app with a familiar installer. GPU-accelerated rendering keeps large repositories smooth on everything from laptops to workstations.
- 64-bit Windows 10 & 11
- One-click .exe installer
- GPU-accelerated editor & auto-updates
Windows 10/11 · 64-bit · ~118 MB
main.py
utils.py
tests
terminal
1
2
3
4
5
2
3
4
5
def main():
data = load("input.json")
# Ctrl+K to refactor
return process(data)
main()