1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00
Files
Boostnote/docs/debug.md
2017-03-26 23:55:09 -07:00

966 B

How to debug Boostnote (electron app)

The electron that makes Boostnote is made from Chromium, developers can use Developer Tools as same as Google Chrome.

This is how to toggle Developer Tools: how_to_toggle_devTools

The Developer Tools is like this: Developer_Tools

When errors occur, the error messages are displayed at the console.

Debugging

For example, there is a way to put debugger as a breakpoint into the code like this:

debugger

But this is only an example. You need to find a way to debug which fits with you.

References