Skip to content

Instantly share code, notes, and snippets.

@unyo
Created March 23, 2025 04:05
Show Gist options
  • Save unyo/9b4162f6d40cd84e99a6d804c2df555f to your computer and use it in GitHub Desktop.
Save unyo/9b4162f6d40cd84e99a6d804c2df555f to your computer and use it in GitHub Desktop.
vscode electron launch.json proxychains4 socks proxy
{
"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