Add remote access support with WebSocket proxy and lazy launch#27
Open
alexknowshtml wants to merge 1 commit intoSawyerHood:mainfrom
Open
Add remote access support with WebSocket proxy and lazy launch#27alexknowshtml wants to merge 1 commit intoSawyerHood:mainfrom
alexknowshtml wants to merge 1 commit intoSawyerHood:mainfrom
Conversation
Features: - host option: Bind server to custom address (use 0.0.0.0 for remote access) - WebSocket proxy: Routes CDP connections through HTTP server, working around Chrome ignoring --remote-debugging-address on macOS - lazy option: Delay browser launch until first client request Environment variables: - HOST: Server bind address (default: localhost) - LAZY: Set to true for lazy browser launch Usage: HOST=0.0.0.0 bun run scripts/start-server.ts
|
this is awesome @SawyerHood ! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds support for running the dev-browser server remotely over a network.
Features
0.0.0.0for remote access)--remote-debugging-addresson macOSEnvironment Variables
HOST: Server bind address (default:localhost)LAZY: Set totruefor lazy browser launchUsage
Why WebSocket Proxy?
On macOS, Chrome ignores the
--remote-debugging-addressflag and always binds the CDP WebSocket to localhost. This proxy routes WebSocket connections from the HTTP server port to Chrome's internal CDP port, enabling remote connections.Tested