有一个很好的Node.js
调用模块,chalk
它允许应用颜色和文本格式来console.log()
运行。
如果我写这样的东西:
console.log("test string substitution with coloring: %s, %s", chalk.red("red"), chalk.magenta("magenta"));
它将使用字符串替换并正确输出红色和洋红色:
现在我想做的是制作接受带有替换文字的文本作为第一个参数和可变数量的参数的函数,这些函数应该:
- 替换对应的替换文字(就像常规
console.log()
一样); - 每个传递的参数都应使用红色着色
chalk.red()
;
例如:
function log(text, ...args) {
// magic here
}
log("This must be %s, and %s as well", "red", "this must be red");
这将给出:
我试过使用console.log(text, chalk.red.apply(null, args))
,但它似乎没有产生我想要的东西。