自定义控制台colors
语法高亮可帮助你管理代码的复杂性。
colors包(npm install colors)为你的控制台输出带来了类似的好处,使得你更容了解发生了什么。
它也是最常用的NPM包之一。
它向本地JavaScript字符串添加函数,以便你可以执行诸如“some string”.red之类的操作。
例子
// Loading this module modifies String for the entire process require("colors"); console.log("hello".green); // outputs green text console.log("world!".red); // outputs red text console.log("Feeling yellow".yellow); // outputs yellow text console.log("But you look blue".blue); // outputs yellow text console.log("This should cheer you up!".rainbow); // rainbow