figlet
figlet란 리눅스 쉘을 꾸미는 용도로 많이 사용하지만
controller단에서 api를 큼직하게 구분하기 위해 사용해보았다.
공식npm
😎 install
npm i figlet
😎 import
import * as figlet from 'figlet';
글자를 콘솔 창에 출력하기 위한 코드
figlet.text('TEST!!', {
font: 'Ghost', //Ghost , Standard , Graffiti , Dancing Font , Slant , Pagga
horizontalLayout: 'default',
verticalLayout: 'default',
width: 100,
whitespaceBreak: true
}, function(err, data) {
if (err) {
console.log('Something went wrong...');
console.dir(err);
return;
}
console.log(data);
});
Ghost , Standard , Graffiti , Dancing Font , Slant , Pagga 등 내맘에 드는 폰트 주석처리
.-') _ ('-. .-') .-') _ ,---.,---.
( OO) ) _( OO) ( OO ). ( OO) ) | || |
/ '._(,------.(_)---\_)/ '._ | || |
|'--...__)| .---'/ _ | |'--...__)| || |
'--. .--'| | \ :` `. '--. .--'| || |
| | (| '--. '..`''.) | | | .'| .'
| | | .--' .-._) \ | | `--' `--'
| | | `---.\ / | | .--. .--.
`--' `------' `-----' `--' '--' '--'
위 코드 출력시 귀신들이 글자를 안고있다.
스탠다드 폰트 출력시 가장 깔끔
컨트롤러 단에서 큰 글씨로 주석 처리 해거나, LOG창 꾸밀떄 우용하게 사용 가능하다.
728x90
반응형
'Back-end > Node-NestJS' 카테고리의 다른 글
helmet 보안 xss 필터 추가 (0) | 2022.11.23 |
---|---|
[XSS] Nest js에 xss 필터를 넣어서 보안 강화 XSS 방지, Cross Site Scripting (0) | 2022.11.10 |
[NestJS] 상황에 따른 logger level 분기 나누기 (0) | 2022.09.14 |
[NestJS] LOG에 요청 transation-id 추가하기 (0) | 2022.09.13 |
[Nest.js] Interceptor VS Filter VS Middleware 차이점 (0) | 2022.09.07 |
댓글