文件名称:nodejs-hook-stdio:一种挂钩 process.stderr 和 process.stdout 的简便方法
文件大小:3KB
文件格式:ZIP
更新时间:2024-07-10 01:10:48
JavaScript
#介绍 一个很棒的库的简化版本: : 。 允许您获取 Node 全局 process.stdout 和 process.stderr 管道并监听。 文档 API 很简单。 使用钩子库的 stderr 或 stdout 函数,只需传入一个处理函数。 可选的第二个参数是真/假,它控制数据是复制到原始目的地还是完全拦截。 // Import the library. var Hook = require('hook-stdio'); // Setup up a little container variable for stderr. var errors = []; // Intercept messages passed to the stderr pipe and add them to the array of errors. Hook.stderr(
【文件预览】:
nodejs-hook-stdio-master
----.gitignore(29B)
----package.json(393B)
----LICENSE(1KB)
----index.js(881B)
----README.md(2KB)