Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vain0x/debug-adapter-examples
Examples of Debug Adapter Protocol (DAP) implementation
https://github.com/vain0x/debug-adapter-examples
dap debug-adapter-protocol example
Last synced: about 1 month ago
JSON representation
Examples of Debug Adapter Protocol (DAP) implementation
- Host: GitHub
- URL: https://github.com/vain0x/debug-adapter-examples
- Owner: vain0x
- License: cc0-1.0
- Created: 2021-02-02T07:20:29.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-22T15:15:04.000Z (over 3 years ago)
- Last Synced: 2024-08-03T09:12:58.412Z (4 months ago)
- Topics: dap, debug-adapter-protocol, example
- Language: TypeScript
- Homepage:
- Size: 598 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-github-star - debug-adapter-examples
README
# Debug Adapter Examples
Debug Adapter Protocol (DAP) の実装例
## 一覧
- [adapter-minimal](./adapter-minimal)
- 起動と終了だけできる DAP アダプタ
- 通信まわりや拡張機能の設定の参考になるはず
- [adapter-json](./adapter-json)
- 変数の表示だけできる DAP アダプタ
- variables リクエストの参考になるはず
- [adapter-step](./adapter-step)
- ステップ実行ができる DAP アダプタ
- stepIn などのリクエストの参考になるはず## リンク
DAP:
- DAP の仕様: [Official page for Debug Adapter Protocol](https://microsoft.github.io/debug-adapter-protocol/)
VSCode:
- VSCode でデバッガーを提供する拡張機能を作る方法のドキュメント: [Debugger Extension | Visual Studio Code Extension API](https://code.visualstudio.com/api/extension-guides/debugger-extension)
- DAP アダプタと VSCode 拡張機能のサンプル: [microsoft/vscode-mock-debug\: Starter sample for developing debug adapters for VSCode.](https://github.com/microsoft/vscode-mock-debug)
- DAP アダプタの実装 (Node.js): [microsoft/vscode-debugadapter-node\: Debug adapter protocol and implementation for VS Code.](https://github.com/Microsoft/vscode-debugadapter-node)