thread-sleep
v2.2.0
Published
A module for when you just need node to back off for a few milliseconds
Downloads
5,520
Readme
thread-sleep
A native module for when you just need node to back off for a few milliseconds. It effectively pauses the current thread. It may be woken early if an interupt is fired, so it should work pretty well for busy waiting scenarios where you want to check something every few hunderd milliseconds.
Installation
npm install thread-sleep
This module uses node-pre-gyp so it should install even without a compiler in most environments. If you run into any problems, please open an issue with the full npm log, and a description of what operating system you use.
Usage
var sleep = require('thread-sleep');
var start = Date.now();
var res = sleep(1000);
var end = Date.now();
// res is the actual time that we slept for
console.log(res + ' ~= ' + (end - start) + ' ~= 1000');
// tested on osx and resulted in => 1005 ~= 1010 ~= 1000
License
MIT