I'm building an application in JavaScript that uses UTC time. It's very important that the time will always be the correct UTC time.
My application is going to be hosted on Amazon-ec2.
I use moment.utc() to get the UTC time.
Are there any known issues with the timezone on Amazon when the clock's changing to summer/winter time?
Can I sleep well knowing that whenever Amazon moves to winter time, it will immediately display the correct UTC time?
I'm asking that because on Microsoft Windows in my personal computers sometimes I need to change the local clock to summer/winter time by myself, and sometimes it switched back to winter time on the wrong day.
Notice: UTC time doesn't change, but it's calculated according to the computer local time, and the computer local time does change, so an incorrect local time ends up with an incorrect UTC time.