nodeboot-servers-desktop
Installation
SKILL.md
Node-Boot Desktop Adapters
No desktop adapters are published yet. This skill is for pioneering one, not for loading a ready-made package.
What the project guidance says
Per CONTRIBUTING.md#13-desktop-adapters:
- Start by opening an issue describing the target desktop shell.
- Prefer Electron first because it is Node.js-native; Tauri is a possible follow-up target.
- Choose one of two designs:
- IPC-native driver: bind Node-Boot directly to the Electron main process with an IPC-based
NodeBootDriver. - Embedded HTTP adapter: run an existing HTTP adapter such as
http-serverinside the main process and have the renderer call it locally.
- IPC-native driver: bind Node-Boot directly to the Electron main process with an IPC-based
- Whichever design you choose, it must follow the same
BaseServer/NodeBootDrivercontract as the existing adapters. - A real contribution should add a sample such as
samples/sample-electronproving the pattern end to end.
For the contract details and extension workflow, load ../nodeboot-extending-nodeboot/SKILL.md and then read the linked CONTRIBUTING.md sections it points to.