Mongoose examples frequently use JS `Date` objects for time. JavaScript `Date`s are in local timezone by default. **Using specific timezones for server-side data is generally considered bad practice**. See **[Daylight saving time and time zone best practices](http://stackoverflow.com/questions/2532729/daylight-saving-time-and-time-zone-best-practices)** or **[The 5 laws of API dates and times](http://apiux.com/2013/03/20/5-laws-api-dates-and-times/)** Mongoose docs should encourage best practice for storing dates, specifically by replacing: ``` time: { type: Date, default: Date.now }, ``` with ``` time: { type: Number, default: function(){return new Date().getTime()} } ```