beautify-console-log
v1.3.16
Published
This is a further beautification and encapsulation of the 'console' object. You can use it like using "console. log", "console. info", "console. warn", "console. error", and it can display the code line information where the log is printed.
Downloads
1,984
Maintainers
Readme
beautify-console-log
介绍
由于大部分日志美化插件都不能定位到代码所在行,所以我自己实现了这个库。
- 这是“console”对象的进一步美化和封装,包括console.log、console.info、console.warn、console.error。
- 可以显示日志打印的所在行数,可以加入自定义的console打印前缀、对内容进行美化(web端规则参考 https://developer.mozilla.org/en-US/docs/Web/API/Console ,node环境参考 https://zh.wikipedia.org/wiki/ANSI%E8%BD%AC%E4%B9%89%E5%BA%8F%E5%88%97), 可随时关闭console打印,支持node环境。
查看效果请在控制台。
目录
效果展示
安装教程
npm i beautify-console-log --save
或
yarn add beautify-console-log
使用说明
- 简单使用
- 为了方便使用(也为了兼容老版本),我把参数定义为多种类型,比如使用
config
配置时,可以传入type
值为:LogType
类型,也可以传入字符串"info"
、"log"
、"warn"
、"error"
。
import BeautifyConsole from "beautify-console-log";
const log = BeautifyConsole.getInstance();
// 使用方式与正常的console.info()一致
log.info(1234, '4', [3, 5]);
或
import BeautifyConsole from "beautify-console-log";
const log = new BeautifyConsole();
log.info(111111);
或
const log = new BeautifyConsole();
// 使用方式与正常的console.info()一致
log.info(1234, '4', [3, 5]);
也可以直接使用 dist/index.js
文件
<script src="./dist/index.js">
<script>
const log = BeautifyConsole.default.getInstance()
log.info(1234, '4', [3, 5])
// 也可以这样
const log2 = new BeautifyConsole.default()
log2.error(111)
</script>
const log = BeautifyConsole.default.getInstance()
log.info(1234, '4', [3, 5])
log.log(1234)
log.close().warn('no show')
log.open().log('show log')
log.error(1234)
log.setPadStartText({
title: "hello world ->",
logType: LogType.info,
}).log(1234)
console.log('------------------------------------------------')
console.log('--------Set log header text and style-----------')
log.setPadStartText('log', 'hello world:', {
color: 'red',
bgColor: 'green'
}).log(1234)
log.log(1)
console.log('------------------------------------------------')
console.log('----------------config start--------------------')
log.config({
title: 'custom title',
type: ['info', 'error']
})
log.warn('custom warn', 'no show')
log.info('custom log')
log.error('custom error')
console.log('------------------------------------------------')
console.log('----------------config reset--------------------')
log.reset()
log.info('reset log')
log.warn('reset warn')
如果想在生成环境关闭多余日志,可以这么配置:
import BeautifyConsole from "beautify-console-log";
import { LogType } from 'beautify-console-log/lib/beautify-console/model';
const log = BeautifyConsole.getInstance();
/**
* vite 使用 import.meta.env.MODE 获取环境
*/
log.config({
title: 'custom title',
type: process.env.NODE_ENV === 'product' ? ['error'] : ['log', 'info', 'warn', 'error']
})
log.info(1234, '4', [3, 5]); // 不会显示打印
或者
import BeautifyConsole from "beautify-console-log";
import { LogType } from 'beautify-console-log/lib/beautify-console/model';
const log = BeautifyConsole.getInstance();
/**
* vite 使用 import.meta.env.MODE 获取环境
*/
if (process.env.NODE_ENV === 'product') {
log.close().open(LogType.error);
}
log.info(1234, '4', [3, 5]); // 不会显示打印
- 初始化配置
const log = BeautifyConsole.getInstance();
import { LogType } from 'beautify-console-log/lib/beautify-console/model';
log.config({
title: 'example pad start text', // 左侧填充的日志头内容
type: [LogType.info, LogType.error, LogType.warn, LogType.log], // 显示部分日志类型
})
log.info(1234, '4', [3, 5]);
log.log(1234, '4', [3, 5]);
log.warn(1234, '4', [3, 5]);
log.error(1234, '4', [3, 5]);
- 支持的console类型
const log = BeautifyConsole.getInstance();
log.info(1234, '4', [3, 5]);
log.log(1234, '4', [3, 5]);
log.warn(1234, '4', [3, 5]);
log.error(1234, '4', [3, 5]);
- 加入自定义console日志头
const log = BeautifyConsole.getInstance();
log.setPadStartText({
title: "hello world ->",
logType: LogType.info,
}).info(1234,'4 ', [3, 5])
// 也可以这样
log.setPadStartText({
title: "hello world ->",
logType: LogType.info,
}).info(1234,'4 ', [3, 5]).info(1234, '4', [3, 5]);
- 关闭日志,传入参数就关闭对应的console日志类型,不传就关闭所有的类型,支持链式调用
// ...省略
const log = BeautifyConsole.getInstance();
log.close(LogType.info);
log.close(LogType.log);
log.close(LogType.warn);
log.close(LogType.error);
log.close();
log.close().open(LogType.error);
// or
log.open(LogType.error).open(LogType.log).open(LogType.warn).open(LogType.info);
// or
log.close(LogType.error).info('closed error');
log.close(LogType.error).error('closed error');
// or
log.close(LogType.error).open(LogType.info);
log.close(LogType.error).open(LogType.info).info('info...');
- 打开日志,传入参数就打开对应的console日志类型,不传就打开所有的类型,支持链式调用
const log = BeautifyConsole.getInstance();
log.open(LogType.info);
log.open(LogType.log);
log.open(LogType.warn);
log.open(LogType.error);
log.open();
log.open().close(LogType.info);
//or
log.open(LogType.error).open(LogType.log).open(LogType.warn).open(LogType.info);
// or
log.open().info('closed error');
log.open(LogType.error).error('closed error');
// or
log.close(LogType.error).open(LogType.info);
log.close(LogType.error).open(LogType.info).info('info...');
API
config
|参数名 |值类型 |描述 |
|-------------------------------|-----------------------------|-----------------------------|
|param|BaseConfig||
|├──title |String? |自定义日志头,值为空时不显示"title" |
|└──type |LogType[] | ('info' 、 'log' 、 'warn' 、 'error')[] |显示的日志类型,设置后只显示对应的日志类型(LogType.info
、LogType.log
、LogType.warn
、LogType.error
、"info"
、"log"
、"warn"
、"error"
)|
import BeautifyConsole from "beautify-console-log";
import { LogType } from 'beautify-console-log/lib/beautify-console/model';
const log = BeautifyConsole.getInstance();
log.config({
title: 'custom title',
type: [LogType.info, LogType.error, 'log']
})
// 使用方式与正常的console.info()一致
log.info(1234, '4', [3, 5]);
// 或者
const log2 = new BeautifyConsole();
log2.info(111111);
log
使用方式与正常的console.log()一致
import BeautifyConsole from "beautify-console-log";
const log = BeautifyConsole.getInstance();
log.log(1234, '4', [3, 5]);
log.log({
"name": "chengzan"
});
info
使用方式与正常的console.info()一致
import BeautifyConsole from "beautify-console-log";
const log = BeautifyConsole.getInstance();
log.info(1234, '4', [3, 5]);
log.info({
"name": "chengzan"
});
warn
使用方式与正常的console.warn()一致
import BeautifyConsole from "beautify-console-log";
const log = BeautifyConsole.getInstance();
log.warn(1234, '4', [3, 5]);
log.warn('warn');
error
使用方式与正常的console.error()一致
import BeautifyConsole from "beautify-console-log";
const log = BeautifyConsole.getInstance();
log.error(1234, '4', [3, 5]);
log.error('warn');
open
使用log.close()
关闭日志后,可以log.open()
进行打开对应的日志类型,打开所有类型日志时,不传参(支持链式调用)。
|值类型 |描述 |
|-----------------------------|-----------------------------|
|LogType | "info" | "log" | "warn" | "error" |LogType.info
、LogType.log
、LogType.warn
、LogType.error
,或者不传|
import BeautifyConsole from "beautify-console-log";
import { LogType } from 'beautify-console-log/lib/beautify-console/model';
const log = BeautifyConsole.getInstance();
log.open() // 打开所有类型日志
// 或者
log.open(LogType.info) // 打开info日志
// 或者
log.open(LogType.info).open('error') // 打开info日志
close
关闭日志,可以关闭全部日志或者某个类型的日志。
|值类型 |描述 |
|-----------------------------|-----------------------------|
|LogType | "info" | "log" | "warn" | "error" |LogType.info
、LogType.log
、LogType.warn
、LogType.error
、"info"
、"log"
、"warn"
、"error"
,或者不传|
import BeautifyConsole from "beautify-console-log";
import { LogType } from 'beautify-console-log/lib/beautify-console/model';
const log = BeautifyConsole.getInstance();
log.close() // 关闭所有类型日志
// 或者
log.close(LogType.info) // 关闭info日志
// 或者
log.close(LogType.info).open('log')
setPadStartText
设置日志头文本内容及文本样式
|参数名 |值类型 |描述 |
|-------------------------------|-----------------------------|-----------------------------|
|param|PadStartText||
|├──title |String |自定义日志头 |
|├──logType | LogType | "info" | "log" | "warn" | "error" |LogType.info
,LogType.log
,LogType.warn
,LogType.error
、"info"
、"log"
、"warn"
、"error"
|
|└──style |PadStartStyle ||
| |├──color? (ColorType |、 'black' | 'red' | 'green' | 'yellow' | 'blue' | 'purple' | 'cyan' | 'white') |ColorType.black
,ColorType.red
,ColorType.green
,ColorType.yellow
,ColorType.blue
,ColorType.purple
,ColorType.cyan
,ColorType.white
|
| |└──bgColor? (ColorType | 'black' | 'red' | 'green' | 'yellow' | 'blue' | 'purple' | 'cyan' | 'white') |ColorType.black
,ColorType.red
,ColorType.green
,ColorType.yellow
,ColorType.blue
,ColorType.purple
,ColorType.cyan
,ColorType.white
|
import BeautifyConsole from "beautify-console-log";
import { LogType, ColorType } from 'beautify-console-log/lib/beautify-console/model';
const log = BeautifyConsole.getInstance();
log.close() // 关闭所有类型日志
// 或者
log.close(LogType.info) // 关闭info日志
// 或者
log.close(LogType.info).open('log')
log.setPadStartText({
title: "hello world ->",
logType: LogType.info,
style: {
color: ColorType.yellow,
bgColor: ColorType.purple,
}
}).log(1234)
// 或者
log.setPadStartText({
title: "hello world ->",
logType: LogType.info,
style: {
color: 'black',
bgColor: 'purple',
}
}).log(1234)
reset
当设置自定义日志头或关闭部分日志等操作后,可以通过log.reset()
重置。
import BeautifyConsole from "beautify-console-log";
import { LogType } from 'beautify-console-log/lib/beautify-console/model';
const log = BeautifyConsole.getInstance();
log.config({
title: 'custom title',
type: [LogType.info, LogType.error]
})
log.reset() // 打开所有类型日志
log.info('reset log')
Types 类型定义
BaseConfig
{
type?: LogType[] | ('info' | 'log' | 'warn' | 'error')[]
title?: string
}
BaseColorType
{
color?: ColorType;
bgColor?: ColorType;
}
PadStartStyle
{
color?: ColorType;
bgColor?: ColorType;
}
PadStartText
{
title: string;
logType: LogType | 'info' | 'log' | 'warn' | 'error';
style?: PadStartStyle;
}
ColorType
{
black = 90,
red = 91,
green = 92,
yellow = 93,
blue = 94,
purple = 95,
cyan = 96,
white = 97,
}
LogType
{
info = "info",
warn = "warn",
error = "error",
log = "log",
}
Utils
formatConsoleStr
import BeautifyConsole from "beautify-console-log";
import { formatConsoleStr } from 'beautify-console-log/lib/utils';
// node.js
log.info(formatConsoleStr('string=%s number=%d', 'string', 1).join(''))
// browser
log.info(...formatConsoleStr('string=%s number=%d', 'string', 1))
参与贡献
- Fork 本仓库
- 新建 Feat_xxx 分支
- 提交代码
- 新建 Pull Request