Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/polylith/monaco-debugger
https://github.com/polylith/monaco-debugger
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/polylith/monaco-debugger
- Owner: polylith
- Created: 2020-03-16T12:42:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-10-17T19:50:02.000Z (about 2 years ago)
- Last Synced: 2024-10-12T17:52:44.419Z (2 months ago)
- Language: TypeScript
- Size: 136 KB
- Stars: 10
- Watchers: 4
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
- awesome-github-star - monaco-debugger
README
# Description
This is a debugger for the debugProtocol of Microsoft, used in VSCode.# Current Status
This is not an stable version and should not be used in production.
If you are interested in this project and wants to help please create an issue or a pull request to improve this project.# Documentation
Actually there is no documentation, so you need to figure out the usage in the source code.
But here's an init snippet (HTML refs are from vue.js):``` js
this.debugging = new Debugger(
editor,
this.$refs.debugger,
{
currentFile: {path: "/data/task-data/" + settings.editableFile, file: settings.editableFile.split('/')[1]},
debugArguments: conf,
language: 'php'
}
);