CodeNomad/packages/electron-app
codenomadbot[bot] 259d457209
fix(desktop): launch server with unrestricted root (#283)
## Summary
- launch the Electron-managed server with `--unrestricted-root` by
default
- launch the Tauri-managed server with `--unrestricted-root` by default
- stop relying on the server's `process.cwd()` fallback for desktop
filesystem browsing

--
Yours,
[CodeNomadBot](https://github.com/NeuralNomadsAI/CodeNomad)

Co-authored-by: Shantur Rathore <i@shantur.com>
2026-04-03 16:47:34 +01:00
..
electron fix(desktop): launch server with unrestricted root (#283) 2026-04-03 16:47:34 +01:00
scripts fix(electron): use safe npm invocation on windows 2026-03-29 09:47:58 +01:00
.gitignore fix(desktop): bundle CLI resources and request mic access 2026-03-28 15:30:14 +00:00
electron.vite.config.ts refactor(build): share Monaco public asset copy helper 2026-02-10 10:49:05 +00:00
package.json Bump version to 0.13.3 2026-03-31 20:15:25 +01:00
README.md Update Readmes 2025-11-21 12:37:24 +00:00
tsconfig.json fix(desktop): bundle CLI resources and request mic access 2026-03-28 15:30:14 +00:00

CodeNomad App

This package contains the native desktop application shell for CodeNomad, built with Electron.

Overview

The Electron app wraps the CodeNomad UI and Server into a standalone executable. It provides deeper system integration, such as:

  • Native window management
  • Global keyboard shortcuts
  • Application menu integration

Development

To run the Electron app in development mode:

npm run dev

This will start the renderer (UI) and the main process with hot reloading.

Building

To build the application for your current platform:

npm run build

To build for specific platforms (requires appropriate build tools):

  • macOS: npm run build:mac
  • Windows: npm run build:win
  • Linux: npm run build:linux

Structure

  • electron/main: Main process code (window creation, IPC).
  • electron/preload: Preload scripts for secure bridge between main and renderer.
  • electron/resources: Static assets like icons.