Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- redis
- mybatis
- Elk
- ajax
- javascript
- reactor
- github
- VCS
- AWS
- git
- html
- Heap
- HTTP
- cache
- Linux
- mongodb
- nodejs
- Java
- Lombok
- effective
- libuv
- spring
- NoSQL
- 데이터통신
- 네트워크
- socket
- reactive
- Static
- network
- r
Archives
- Today
- Total
빨간색코딩
V8 inspector을 이용한 디버깅 본문
참조문서
- https://nodejs.org/ko/docs/guides/simple-profiling/
- https://nodejs.org/api/debugger.html#debugger_v8_inspector_integration_for_node_js
node에서 힙덤프 뜨기, CPU프로파일링 등을 하려면 몇가지 방법이 있지만, 이게 제일 쉽고 편한 것 같다.
1. 디버거 붙이기
node --inspect 소스명.js
로 실행한다. 그러면 아래와 같이 나온다
chrome-devtools://devtools/remote/serve_file/@11cd6e111b9f111d1111f5bf532f6aec5f1111111/inspector.html?experiments=true&v8only=true&ws=127.0.0.1:9229/123e4a5e-1e2d-3fb4-12be-e12f1f15e0ff
ws를 잘보면 127.0.0.1이 보인다. 만약 AWS 등 원격서버에서 돌고있는 노드 인스턴스를 디버깅하려면 이부분을 바꿔야한다.
터미널에 Debugger attached.
라고 뜨면 잘 된거다.
2. 디버깅
크롬 데브툴에서 한다.
'node.js' 카테고리의 다른 글
body-parser 모듈 (urlencoded, extended 옵션) (1) | 2018.06.26 |
---|---|
nodejs의 내부 동작 원리 (libuv, 이벤트루프, 워커쓰레드, 비동기) (7) | 2018.04.20 |
nodejs 메모리 누수 (0) | 2017.08.04 |
mongoose-auto-increment (0) | 2017.08.04 |
Mongoose 모듈 (mongodb와 혼용, 연결, 스키마, 타입, 모델, CRUD) (0) | 2017.08.04 |
Comments