I am using Mongoose & Node.js for my webserver.
As a part of one of my document schemas, I have a \'timestamp\' field. The line for it in the schema is:
var schema = new Schema({ timestamp: {type:Number, default: new Date().getTime()} });
Hope this will solve your issue.