Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Node.JS Accurate Timer

How can I create a Node.JS accurate timer? It should look like a kitchen timer or a stopwatch.

And I need accuracy, as much as possible. The application will promote some kind of "clicks war". I need to store every (concurrent) user's click, noting seconds and milliseconds (to tie the game).

How can I do it? Are there some code sample?

Thanks in advance.

like image 501
sonnuforevis Avatar asked Nov 28 '22 09:11

sonnuforevis


1 Answers

Well You should have a look at microtime module, which gives you the time as accurate as microseconds. You can even measure CPU tick time with it!

As of the code well you can do something like this (Storing the time in objects and then accessing them with the user id, advantage would be no duplicate of the same user and faster access to one, if the user name is known):

var microtime = require('microtime');
  , clicks = {};

click(function(user){ // An event listener for received clicks
  clicks[user] = microtime.now();
});

or (pushing all in an array, advantage would be that it can be sorted, and easily all of them be iterated)

var microtime = require('microtime');
  , clicks = [];

click(function(user){ // An event listener for received clicks
  clicks.push({
    user : user,
    time : microtime.now()
  });
});

As of node v0.8.0 you can use process.hrtime() which will return an array both containing a relative seconds and nanoseconds to past.

like image 180
Farid Nouri Neshat Avatar answered Dec 31 '22 14:12

Farid Nouri Neshat