log-formatter
TypeScript icon, indicating that this package has built-in type declarations

2.0.3 • Public • Published

log-formatter

为 chalk 提供了一种更加方便的格式化输出方式

导入模块

import log from 'log-formatter';

或者

const log = require('log-formatter').default;

用法

log
    .dateTime                   // 在开头打印日期时间
    .text.bold.blue.bgGray      // 第一个参数,灰色背景蓝色粗体
    .text.square.linebreak      // 第二个参数,方括号包裹,结尾换行
    .text.indentJson.yellow     // 第三个参数,黄色字体,采用缩进的方式打印对象
    .print('第一个参数', '第二个参数', { 3: '第三个参数' });

文档

示例

/log-formatter/

    Package Sidebar

    Install

    npm i log-formatter

    Weekly Downloads

    2

    Version

    2.0.3

    License

    MIT

    Unpacked Size

    21.1 kB

    Total Files

    7

    Last publish

    Collaborators

    • wujingtao