This package contains the native desktop application shell for CodeNomad, built with Electron.
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
To run the Electron app in development mode:
npm run devThis will start the renderer (UI) and the main process with hot reloading.
To build the application for your current platform:
npm run buildTo build for specific platforms (requires appropriate build tools):
- macOS:
npm run build:mac - Windows:
npm run build:win - Linux:
npm run build:linux
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.