분류
Nodejs
chalk - 터미널 문자열 스타일링이 올바르게 완료되었습니다.
본문
https://github.com/chalk/chalk
const chalk = require('chalk'); const log = console.log; // Combine styled and normal strings log(chalk.blue('Hello') + ' World' + chalk.red('!')); // Compose multiple styles using the chainable API log(chalk.blue.bgRed.bold('Hello world!')); // Pass in multiple arguments log(chalk.blue('Hello', 'World!', 'Foo', 'bar', 'biz', 'baz')); // Nest styles log(chalk.red('Hello', chalk.underline.bgBlue('world') + '!')); // Nest styles of the same type even (color, underline, background) log(chalk.green( 'I am a green line ' + chalk.blue.underline.bold('with a blue substring') + ' that becomes green again!' ));
- 이전글meow - CLI 응용 도우미. 19.03.07
- 다음글signale - 아름다운 출력을 가진 Hackable console logger. 19.03.07