mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-14 10:16:26 +00:00
26 lines
1.6 KiB
Markdown
26 lines
1.6 KiB
Markdown
# How to debug Boostnote (Electron app)
|
|
Diese Seite ist auch verfügbar in [Japanese](https://github.com/BoostIO/Boostnote/blob/master/docs/jp/debug.md), [Korean](https://github.com/BoostIO/Boostnote/blob/master/docs/ko/debug.md), [Russain](https://github.com/BoostIO/Boostnote/blob/master/docs/ru/debug.md), [Simplified Chinese](https://github.com/BoostIO/Boostnote/blob/master/docs/zh_CN/debug.md), [French](https://github.com/BoostIO/Boostnote/blob/master/docs/fr/debug.md) and [German](https://github.com/BoostIO/Boostnote/blob/add-german-documents/docs/de/debug.md).
|
|
|
|
Boostnote is eine Electron app, somit basiert sie auf Chromium; Entwickler können die `Developer Tools` verwenden, wie Google Chrome.
|
|
|
|
Du kannst die `Developer Tools` so einschalten:
|
|

|
|
|
|
Die `Developer Tools` schauen dann ungefähr so aus:
|
|

|
|
|
|
Wenn Fehler vorkommen, werden die Fehlermeldungen in der `console` ausgegeben.
|
|
|
|
## Debugging
|
|
Zum Beispiel kannst du mit dem `debugger` Haltepunkte im Code setzen wie hier veranschaulicht:
|
|

|
|
|
|
Das ist ledigtlich ein Beispiel, du kannst die Art von Debugging verwenden die für dich am besten ist.
|
|
|
|
## Referenz
|
|
* [Official document of Google Chrome about debugging](https://developer.chrome.com/devtools)
|
|
|
|
---
|
|
|
|
Special thanks: Translated by [gino909](https://github.com/gino909)
|