중단점
-
debugger개발/nodejs 2020. 12. 24. 20:58
nodejs 도 android studio 나 jetbrain 처럼 강력한 디버깅 툴을 지원한다. 이번 포스트에서는 간단한 사용법을 정리해본다. 1. 코드 내에 중단점 넣기 작업을 중단하고 싶은 특정 위치에 debugger 라는 코드를 끼워 넣는다. nodejs 기본 라이브러리기 때문에 별도의 module 추가는 필요 없다. const fs = require('fs') const chalk = require('chalk') const addNote = (title, body) => { const notes = loadNotes() const duplicateNote = notes.find((note) => note.title === title) debugger if (!duplicateNote) { no..