redux-devtools
redux-devtools copied to clipboard
Add support for JetBrains server to open in editor
This PR adds support for opening files directly in JetBrains IDEs (such as WebStorm, PhpStorm, IntelliJ IDEA) from Redux DevTools using the JetBrains built-in server. This feature enhances the workflow for developers using JetBrains IDEs by allowing them to jump directly to the source code from the Redux DevTools.
Example of the added case in openFile.ts
:
case 'jetbrains_server':
url = `http://localhost:63342/api/file/?file=${filePath}&line=${line}`;
break;