文件名称:vizbug:上下文感知调试记录器
文件大小:4KB
文件格式:ZIP
更新时间:2024-03-29 09:45:38
JavaScript
Vizbug 一个调试模块,可帮助捕获调试上下文以及对象跟踪信息,以帮助您更好地对调试输出进行可视化处理 npm install vizbug 用法 考虑下面的例子 class Storage { constructor ( ) { this . debug = vizbug ( ) this . debug ( 'new instance' ) } write ( data , cb ) { this . debug ( 'writing data to storage %b' , data ) setImmediate ( cb ) } } class DataStructure { constructor ( ) { this . debug = vizbug ( ) this . debug ( 'new ins
【文件预览】:
vizbug-master
----.gitignore(33B)
----package.json(473B)
----LICENSE(1KB)
----index.js(2KB)
----README.md(3KB)
----example.js(622B)