0

我正在尝试使用这个库来设计我的控制台日志:粉笔。

在终端中,我看到输出没有错误,但没有红色。有人用过吗?

import chalk from 'chalk';

接着

console.log(chalk.red('This remain white as default'));

我在 OSX 上运行它,React native 0.61.5

4

1 回答 1

3

文档描述

在使用它之前,您必须先要求。

例子:

const chalk = require('chalk');  //Add this

并检查设置chalk.level

const ctx = new chalk.Instance({level: 3});

Level   Description
0       All colors disabled
1       Basic color support (16 colors)
2       256 color support
3       Truecolor support (16 million colors)

那么你也能console.log(ctx.red('red text'));

于 2020-04-27T08:43:14.310 回答