This document discusses asynchronous I/O in NodeJS. It begins by covering traditional control flow models like single-threaded and multi-threaded processes. It then introduces emerging models like coroutines, fibers, and event-driven non-blocking I/O. The rest of the document focuses on how NodeJS implements an asynchronous event-driven model using libev, libeio, and callbacks. It notes some issues with callbacks and introduces flow control libraries like Steps that help address these issues.