在节点脚本中包含“无颜色”选项?

时间:2018-05-30 00:49:50

标签: javascript node.js

我制作了一个节点脚本,并使用我console.logs中的颜色来美化其输出:

const noColorOption = args[1] === '--no-color' || args[2] === '--no-color';
const colors = {
    green: noColorOption ? '' : '\x1b[32m%s\x1b[0m',
    cyanRed: noColorOption ? '' : '\x1b[36m%s\x1b[91m%s\x1b[0m'
};

// ... examples of console.logs in my script ...
console.log(colors.cyanRed,
  filename + '\n   ',
  redundantModules.join('\n   '));
console.log(colors.green, `\nTotal files searched: ${totalFilesSearched}`);

但是,--no-color选项无法正常工作,因为console.log只是将空字符串打印为空格。

我应该只添加没有第一个参数的新console.logs,还是有办法分配--no-color选项以使其正确打印出默认颜色?

1 个答案:

答案 0 :(得分:1)

您可以使用%s代替空字符串。

const noColorOption = process.argv[2] === '--no-color';
const colors = {
    green: noColorOption ? '%s' : '\x1b[32m%s\x1b[0m',
    cyanRed: noColorOption ? '%s' : '\x1b[36m%s\x1b[91m%s\x1b[0m'
};


console.log(colors.cyanRed, __filename + '\n   ');
console.log(colors.green, `Total files searched: 0`);