set-dateout

Run a function at the specified JavaScript date


Keywords
setTimeout, date, schedule, long-running-process
License
MIT
Install
bower install set-dateout

Documentation

icon of a life preserver set-dateout

Bower version NPM version     Build Status

Like setTimeout, but for dates in the far future. (specifically, this module overcomes the 32-bit integer overflow issue)

Install

$ npm install set-dateout

Use

var setDateout = require('set-dateout');

setDateout(function (){
  console.log('yeah!! it\'s a new century, baby!!');
}, new Date('January 1, 2100'));

License

MIT

solution modified from http://stackoverflow.com/a/18182660