1.0.1 • Published 8 years ago

blocking-stdio v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

blocking-stdio

Since node 6, stdio is non blocking by default. Besides having several advantages, one obvious disatvantage is that sometimes the program exits before all output has been printed. This module changes it back to blocking!

Usage

Include this at the top of your process:

require('blocking-stdio')();

Warning

Do NOT include this in a library. This module modifies global state and thus should ONLY be used in an application. Don't modify global stuff in libraries, people.

Kudos

Thanks @isaacs! https://twitter.com/izs/status/732317861067153408.

License

MIT