-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does Debugger for Firefox work if you have multiple versions of firefox installed? #377
Comments
|
Thanks Holger, Here's my launch.json:
Here's my log.txt:
Edge and Chrome work, firefox starts up and then goes away. |
Thanks for the log - it looks like the extension manages to connect to the debugger port but never receives the initial message that Firefox should send. My guess is that some other application is listening on the debugger port (which is 6000 by default). |
I tried adding a "port": with the values 6000, 6001, and 44444 with the same results e.g.
|
Well, it's no surprise that 6000 doesn't work as that's what it used before by default. And port 44444 can't work either because that's occupied by your web server. |
I started my webserver in Visual Studio and I don't see ports 6000 and 6001 in the list coming from |
Could you check if using |
Sorry, I haven't had time to look at this for a few days, I would believe that I'd also need to change the correct path in the Firefox: Executable setting I changed it to
instead of:
My launch.json file looks like:
In the developer tool settings in my regular firefox, I opened the Developer Tools Settings and checked the checkboxes labeled "Enable browser chrome and add-on debugging toolboxes" and "Enable remote debugging." My log.txt looks like:
|
Hi,
I have Firefox, Firefox Nightly, and Firefox Developer edition installed on my Windows dev machine, Firefox is the default browser. I've created a .vscode/launch.json in the root directory of my JavaScript project.
I start my Kestrel web server in Visual Studio and it launches Firefox Developer Edition. I then hit the Run and Debug button in attach mode in Visual Studio Code, but it doesn't attach. If I try launch mode it launches a new instance of Firefox Developer Edition, but it still doesn't connect.
I'm not seeing any error messages either, but where would they be logged?
The text was updated successfully, but these errors were encountered: