如何自动将CSS应用于console.log着色

这个问题在这里已经有了答案:

  • 如何更改node.js的控制台字体颜色? 24个答案

  • 看看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

    上一篇: How to apply CSS to console.log coloring automatically

    下一篇: Redirect from an HTML page