如何自动将CSS应用于console.log着色
这个问题在这里已经有了答案:
看看color.js。 它提供了风格化控制台输出的功能。 用法如下简单:
console.log("Yellow text".yellow);
您可以使用图书馆,如粉笔。
const chalk = require('chalk');
// combine styled and normal strings
console.log(chalk.blue('Hello') + 'World' + chalk.red('!'));
链接地址: http://www.djcxy.com/p/87371.html