Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need the next flow:

var a = new Date(1337324400000, 'Europe/Amsterdam'); //+2h
console.log(a); // for example 12:00 Mon ...
a.setTimeZone('Europe/Kiev'); //+3h
console.log(a); // 13:00 Mon ...

Is there such possibility in nodejs utils api ?

share|improve this question

2 Answers

up vote 9 down vote accepted

You can use node-time, as follows:

var time = require('time');

var a = new time.Date(1337324400000);

a.setTimezone('Europe/Amsterdam');
console.log(a.toString()); // Fri May 18 2012 09:00:00 GMT+0200 (CEST)
a.setTimezone('Europe/Kiev');
console.log(a.toString()); // Fri May 18 2012 10:00:00 GMT+0300 (EEST)
share|improve this answer
Interesting solution but it does change the current process timezone. Not acceptable for me. – Stefan Feb 22 at 7:37

UPDATE: there is another one now:) https://github.com/mde/timezone-js

A timezone-enabled, drop-in replacement for the stock JavaScript Date. The timezoneJS.Date object is API-compatible with JS Date, with the same getter and setter methods -- it should work fine in any code that works with normal JavaScript Dates.


no there is not

But you can use moment.js to make it easier http://momentjs.com/docs/

You still need to know each offset so you will need mapping like {"Europe/Amsterdam":2,"Europe/Kiev":3}

share|improve this answer
Does it mean I need to create this file with offsets and also calculate daylight saving time ? – Oleg Dats May 17 '12 at 14:29
yes you will need to do it by yourself, as far as I know there is no out of the box solution. – Eldar Djafarov May 18 '12 at 10:43
thanks, but I need some library which will do it for me. – Oleg Dats May 19 '12 at 14:33
1  
There's one, it's called node-time, check my answer. – Laurent Couvidou May 30 '12 at 23:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.