共计 685 个字符,预计需要花费 2 分钟才能阅读完成。
if (process.env.NODE_ENV !== 'production') {
logger.add(new winston.transports.Console({
format: winston.format.combine(winston.format.colorize({ all: true}),
winston.format.simple())}));
}
上述代码的含意是,如果以后 Node.js 执行环境不是生产环境,则将 winston 的输入,打印到管制台上。
_stream_readable.js 抛出 data 事件:
读取事件处理函数:
console 对应的 event handler:
transformed:
console 有专门对应的 transport 实现文件,位于 console.js 内:
从 data 字符串能看出在 console 打印黑白字符串的实现形式:
并没有像我设想的那样,执行到 82 行的 console.log
console 对象的 _stdout 属性,在 internal 这个 constructor.js 里注入:
这个 writeUtf8String 函数,是原生 native API:
位于 Node.js 源代码 的 internal/stream_base_common.js 外部:
writeUtf8String
stream_base_commons.js 文件地位如下:
https://github.com/nodejs/nod…
native 实现:
https://github.com/nodejs/nod…
this[kFs].write
更多 Jerry 的原创文章,尽在:” 汪子熙 ”:
正文完