일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- java
- Operating System
- 운영체제
- REACT
- Zerobase
- 글또
- 자바
- node.js
- 개발공부
- 파이썬 알고리즘 인터뷰
- OS
- 컴퓨터공학
- algorithm
- execution context
- 자바스크립트
- 자료구조
- python algorithm
- useState
- context switching
- 프로그래머스
- JavaScript
- 코드스테이츠
- codestates
- react 기초
- Python
- 파이썬
- 비동기
- typeScript
- 알고리즘
- Computer Science
Archives
- Today
- Total
목록debug module (1)
Back to the Basics
Nodejs-Module-debug 사용법
degut module Node.js Debug Module debug 모듈은 console.log()를 대신하는 로깅 모듈로 node.js에서와 web browser에서 동작한다. node에서 가장 많이 사용하는 모듈이라고 한다. 로그를 구조적으로 기록할 수 있다는 점에서 console.log보다 뛰어나다. 이 모듈은 로그롤 구조화하여 기록할 수 있으며 특정 로그만을 볼 수 있도록 지정할 수 있다는 장점이 있다. HOW TO USE debug를 선언한다 const debug=require('debug') debug id를 정의한다. // debug를 선언할 때 하는 방법 const server=require('debug')("shortly:server"); const request=require('de..
Programming Languages/JavaScript & Node.js
2022. 1. 13. 19:35