forked from BoostIO/BoostNote-Legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add debug docs for korean and link on debug.md
- Loading branch information
1 parent
4da08d9
commit d5b37b2
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Boostnote의 디버그 방법(Electron app) | ||
|
||
Boostnote는 Electron 애플리케이션이므로 Chromium위에서 작동합니다. 그렇기 때문에 개발자분들은 Google Chrome 브라우저에서 처럼 `Developer Tools`를 사용하실 수 있습니다. | ||
|
||
다음과 같이 `Developer Tools`를 실행할 수 있습니다: | ||
 | ||
|
||
`Developer Tools`는 다음과 같이 나타납니다: | ||
 | ||
|
||
에러가 발생할 때에는, 에러메시지가 `console`위에 표시 됩니다. | ||
|
||
## 디버깅 | ||
예를들면 `debugger`를 사용하여 코드 안에서 다음과 같이 일시 정지지점을 설정할 수 있습니다: | ||
|
||
 | ||
|
||
이는 단순한 하나의 예시에 불과합니다. 자기자신에게 가장 잘 맞는 디버그 방법을 찾는 것도 좋을 것 입니다. | ||
|
||
## 참고 | ||
* [디버그에 관한 Google Chrome의 공식 문서](https://developer.chrome.com/devtools) |