Skip to content
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

Add custom arguments to the debugged app #23

Open
cosad3s opened this issue Jan 16, 2024 · 0 comments
Open

Add custom arguments to the debugged app #23

cosad3s opened this issue Jan 16, 2024 · 0 comments

Comments

@cosad3s
Copy link

cosad3s commented Jan 16, 2024

Is there a way to pass custom arguments the the debugged Electron app ? I tried with a shortcut (lnk) and I cannot see options in the UI or config file.

Edit: the only way I found for the moment is to modify the file https://github.com/pd4d10/debugtron/blob/main/src/main/actions.ts with, for example:

    const sp = spawn(
      app.exePath,
      [
        `--myarg=myvalue`,
        `--inspect=${nodePort}`, `--remote-debugging-port=${windowPort}`
      ],
      {
        cwd: process.platform === 'win32' ? path.dirname(app.exePath) : '/',
      }
    )

Then build with npm install && npm run start

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant