- Rust library (nostr-manager-backend) with CLI and JSON-lines IPC serve mode: profiles, publishing with per-relay reports, relays, settings, vault storage and legacy-vault migration - Electron + React + TypeScript desktop GUI using the same backend over stdio IPC - Vitest suite with a fake backend speaking the real protocol - electron-builder linux packaging; README with build and usage instructions
7 lines
341 B
TypeScript
7 lines
341 B
TypeScript
import { contextBridge, ipcRenderer } from 'electron';
|
|
|
|
contextBridge.exposeInMainWorld('backend', {
|
|
request: (method: string, params?: Record<string, unknown>): Promise<unknown> =>
|
|
ipcRenderer.invoke('backend:request', { method, params }),
|
|
copyText: (text: string): Promise<void> => ipcRenderer.invoke('clipboard:write', text),
|
|
});
|