Nexora is an enterprise-grade, high-performance software ecosystem engineered to transform any Android device into an ultra-low-latency wireless controller and digital drawing tablet for Windows PCs. By abandoning traditional single-socket architectures in favor of a specialized Hybrid Multi-Protocol Network Layer (UDP + WebSocket + HTTP) and eliminating OS shell-spawning bottlenecks via persistent Win32 P/Invoke piping, Nexora achieves sub-5ms end-to-end cursor tracking and 40+ MB/s local file throughput. Whether executing fluid multi-finger trackpad gestures, synchronizing bidirectional clipboards, or streaming 16-byte binary vector frames to an always-on-top transparent desktop annotation overlay, Nexora delivers an uncompromised, zero-lag remote desktop experience.
1. Core Innovations & Value Proposition
Nexora solves the primary engineering failure of traditional mobile-to-PC remote controllers: input latency, packet congestion, and cursor jitter. It achieves this through three proprietary systems engineering breakthroughs:
Hybrid Protocol Segregation: Routes data over the network layer best suited for the payload's physical physics. High-frequency continuous data (mouse movement and scroll deltas at 60Hz–120Hz) is dispatched over UDP (Port 8081) for instant, fire-and-forget delivery without TCP handshake or acknowledgment delays. Discrete, state-critical commands (mouse clicks, keyboard chords, clipboard sync, and binary drawing vectors) are routed over persistent WebSockets (Port 8080) to guarantee ordered, reliable delivery.
Zero-Overhead PowerShell IPC (Inter-Process Communication): Traditional remote applications spawn a new OS command shell instance for every keystroke or mouse click, incurring a 100ms–300ms boot penalty per event. Nexora initializes a single persistent PowerShell background process upon desktop server startup. The Node.js/Electron host writes single-line Win32 execution instructions (e.g., MOVE|10|-5, VK|0x41) directly to the process's standard input (stdin), reducing command execution latency to under 3ms.
Binary Canvas Streaming Pipeline: During wireless drawing (Pen Tablet mode), touch vectors are packed into raw 16-byte binary buffers (Float32Array: [commandCode, normalizedX, normalizedY, pressure]). This bypasses JSON stringification overhead entirely, streaming directly into a transparent, click-through Electron Ghost Window for zero-delay desktop annotation.
Built with