文件名称:set-blocking:设置阻塞stdio和stderr以确保终端输出不会截断
文件大小:5KB
文件格式:ZIP
更新时间:2024-05-30 01:01:08
JavaScript
集阻止 设置阻塞stdio和stderr确保终端输出不会截断。 const setBlocking = require ( 'set-blocking' ) setBlocking ( true ) console . log ( someLargeStringToOutput ) 历史背景/警告语 创建它的目的是为了解决讨论的错误。 此错误出现在较新版本的Node.js( 0.12+ )上,从而截断了终端输出。 您应该注意使用set-blocking引起的副作用: 如果您的模块将blocking设置为true ,它将影响其他占用您库的模块。 在,仅当我们已经知道要调用process.exit(code)才调用setBlocking(true) process.exit(code) 。 此补丁不适用于使用isTTY = true生成的子流程,这是。 执照 国际学习中心
【文件预览】:
set-blocking-master
----.gitignore(44B)
----package.json(985B)
----.travis.yml(113B)
----index.js(252B)
----CHANGELOG.md(718B)
----LICENSE.txt(731B)
----README.md(2KB)
----appveyor.yml(278B)
----test()
--------test.js(770B)
--------fixtures()