Node.js colors包

自定义控制台colors

语法高亮可帮助你管理代码的复杂性。

colors包(npm install colors)为你的控制台输出带来了类似的好处,使得你更容了解发生了什么。

它也是最常用的NPM包之一。

它向本地JavaScript字符串添加函数,以便你可以执行诸如“some string”.red之类的操作。

例子

  1. // Loading this module modifies String for the entire process
  2. require("colors");
  3. console.log("hello".green); // outputs green text
  4. console.log("world!".red); // outputs red text
  5. console.log("Feeling yellow".yellow); // outputs yellow text
  6. console.log("But you look blue".blue); // outputs yellow text
  7. console.log("This should cheer you up!".rainbow); // rainbow