Format JavaScript Date avec la bibliothèque date.js

const dayjs = require('dayjs');

let now = dayjs();

console.log(now.format());
Gentle Gerbil