npm的chalk包的使用

  使用chalk定义输出样式:Chalk comes with an easy to use composable API where you just chain and nest the styles you want.

npm的chalk包的使用_第1张图片

 

const chalk = require('chalk')

console.log(chalk.blue('Hello world!'))


console.log(chalk.hex('#DEADED').underline('Hello, world!'))
console.log(chalk.keyword('orange')('Some orange text'))
console.log(chalk.rgb(15, 100, 204).inverse('Hello!'))

console.log(`==========================`)
const error = chalk.bold.red;
const warning = chalk.keyword('orange');

console.log(error('Error!'));
console.log(warning('Warning!'));

---

你可能感兴趣的:(npm的chalk包的使用)