I’m working on a small application in vvvv gamma where I need to work with dates and times for a location in a different time zone than the machine running the application.
I’d like to generate the current local time for a specific time zone (e.g. Asia/Riyadh) without changing the Windows system clock.
In .NET I would normally use something like TimeZoneInfo, but I can’t seem to find an equivalent in the Node Browser.
Yes, that’s what I ended up doing. I’m just not sure how it will behave when switching between summer and winter time, especially since not all countries observe daylight saving time. I was hoping there was a way to handle that automatically.