I'm trying to sign an Amazon request and I need the following timestamp format:
gmdate('Y-m-d\TH:i:s\Z');
How can I obtain that in a nodejs environment? Many thanks in advance.
I'm trying to sign an Amazon request and I need the following timestamp format:
gmdate('Y-m-d\TH:i:s\Z');
How can I obtain that in a nodejs environment? Many thanks in advance.
Share Improve this question asked Dec 14, 2017 at 9:25 JumpaJumpa 4,41912 gold badges60 silver badges105 bronze badges 3- MomentJS is one of the most popular JS libraries for date-time manipulation. – 31piy Commented Dec 14, 2017 at 9:26
- 1 You should provide an example of the format you require, there is little consistency for tokens used in date and time format strings. – RobG Commented Dec 14, 2017 at 12:32
- Probably a duplicate of Where can I find documentation on formatting a date in JavaScript? – RobG Commented Dec 14, 2017 at 19:51
1 Answer
Reset to default 13For anyone who will need this:
new Date().toISOString()