sleep
Add sleep() and usleep() to Node.js, via a C++ binding.
This is mainly useful for debugging.
These calls will block execution of all JavaScript by halting Node.js' event loop!
Usage
var sleep = require('sleep');
sleep.sleep(n): sleep fornsecondssleep.usleep(n): sleep fornmicroseconds (1 second is 1000000 microseconds)