文件名称:easylog:简单而简约的日志记录库
文件大小:51KB
文件格式:ZIP
更新时间:2024-03-24 02:29:05
TypeScript
easylog EasyLog是一个非常简单且极简的日志记录库。 之所以存在,是因为几乎在我们维护的每个项目中都复制/粘贴了此代码。 安装 $ yarn add @link-society/easylog 用法 在TypeScript中: import logging , { LogLevel } from '@link-society/easylog' logging . configure ( { level : LogLevel . Info } ) logging . debug ( { foo : 'bar' } ) // will not be printed logging . info ( { foo : 'bar' } ) // will be printed 在NodeJS中: const { default : logging , LogLevel }
【文件预览】:
easylog-main
----.eslintrc(236B)
----yarn.lock(104KB)
----LICENSE.txt(11KB)
----src()
--------index.ts(3KB)
----tsconfig.json(206B)
----README.md(2KB)
----tests()
--------index.spec.ts(2KB)
----.gitignore(58B)
----package.json(822B)