木心

毕竟几人真得鹿,不知终日梦为鱼

导航

npm的chalk包的使用

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

 

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!'));

---

posted on 2020-01-18 22:53  wenbin_ouyang  阅读(1942)  评论(0编辑  收藏  举报