文件名称:node-console-style:向 node.js 控制台输出添加颜色和样式
文件大小:4KB
文件格式:ZIP
更新时间:2024-06-19 08:22:00
JavaScript
为控制台添加颜色 向 node.js 控制台输出添加颜色和样式。 备择方案 ,但它修改了String.prototype ,因此是错误的。 安装 $ npm install console-style 用法 var style = require ( 'console-style' ) ; // Output bold, underlined and red text console . log ( style . bold . underline . red ( 'Hello world' ) ) ; 应用于样式的参数被传递给 。 这意味着将检查对象,并且可以使用占位符。 // Alternative syntax console . log ( style ( 'Hello world' , [ 'bold' , 'underline' , 'red' ] ) ) ;
【文件预览】:
node-console-style-master
----package.json(316B)
----LICENSE(1KB)
----index.js(2KB)
----README.md(1KB)
----test()
--------index.js(2KB)