Created
March 23, 2025 04:05
-
-
Save unyo/9b4162f6d40cd84e99a6d804c2df555f to your computer and use it in GitHub Desktop.
vscode electron launch.json proxychains4 socks proxy
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch Electron", | |
"type": "node", | |
"trace": "verbose", | |
"protocol": "inspector", | |
"request": "launch", | |
"runtimeExecutable": "/opt/homebrew/bin/proxychains4", | |
"runtimeArgs": ["/Users/cody/.nvm/versions/node/v20.19.0/bin/node", "${workspaceRoot}/node_modules/.bin/electron", "${workspaceRoot}"] | |
"stopOnEntry": false, | |
"args": [ | |
"--devTools", | |
"--windowed", | |
], | |
"cwd": "${workspaceRoot}", | |
"env": { | |
"NODE_ENV": "development", | |
"PATH": "/Users/cody/.nvm/versions/node/v20.19.0/bin:${env:PATH}" | |
}, | |
"console": "internalConsole", | |
"sourceMaps": true, | |
"outFiles": [ | |
"${workspaceFolder}/app/dist" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment