timestamp expiry in nodejs code example
Example 1: js timestamp
var timestamp = new Date().getTime();
Example 2: nodejs current timestamp unix
Math.floor(+new Date() / 1000)
var timestamp = new Date().getTime();
Math.floor(+new Date() / 1000)