I welcome any quality bugfixes or contributions!
To avoid a conflict, delete the installed extension at ~/.vscode/extensions/msjsdiag.debugger-for-chrome.
- In
C:/Users/<username>/.vscode/extensions/,git clonethis repository
git clonethis repository- Run
ln -s <path to repo> ~/.vscode/extensions/vscode-chrome-debug - You could clone it to the extensions directory if you want, but working with hidden folders in OS X can be a pain.
cdto the folder you just cloned- Run
npm install -g gulpandnpm install- You may see an error if
bufferutilorutf-8-validatefail to build. These native modules required bywsare optional and the adapter should work fine without them.
- You may see an error if
- Run
gulp build- This error is expected until someone patches the es6-promise dts in typings -
typings\main\ambient\es6-promise\index.d.ts(76,2): error TS2309: An export assignment cannot be used in a module with other exported elements.
- This error is expected until someone patches the es6-promise dts in typings -
In VS Code, run the launch as server launch config - it will start the adapter as a server listening on port 4712. In your test app launch.json, include this flag at the top level: "debugServer": "4712". Then you'll be able to debug the adapter in the first instance of VS Code, in its original TypeScript, using sourcemaps.
There is a set of mocha tests which can be run with gulp test or with the test launch config. Also run gulp tslint to check your code against our tslint rules.
See the project under testapp/ for a bunch of test scenarios crammed onto one page.
Client: VS Code Target: The debuggee, which implements the Chrome Debug Protocol Server-mode: In the normal use-case, the extension does not run in server-mode. For debugging, you can run it as a debug server - see the 'Debugging' section above.