Released: 2025-12-28
Patch release with improved port conflict detection for remote access.
- Remote port detection: Port availability check now uses
net.createServer()instead offetch(), which is more reliable for detecting ports in use but not serving HTTP. Fixes issue whereafx start --remotewould fail with confusing error when local port was already in use.
- Added
isPortAvailable()function usingnet.createServer()for robust port checking - Added unit tests for port availability detection
- Exported function for reuse in other parts of the codebase
None required. This is a backwards-compatible bug fix.