当我运行我的流星服务器时,我尝试记录一个新日期以查看有关它的信息。
import moment from 'moment';
Meteor.startup(function () {
const now = moment();
console.log('Current time:\t', now.format());
console.log('Offset from UTC:\t', now.utcOffset());
});
记录以下内容:
I20160623-10:07:22.747(-4)? Current time: 2016-06-23T10:07:22-04:00
I20160623-10:07:22.748(-4)? Offset from UTC: -240
有没有办法让我的服务器像在UTC时间运行一样运行?
答案 0 :(得分:1)
在启动服务器之前尝试运行export TZ=utc
。