Формат javascript Дата с библиотекой date.js

const dayjs = require('dayjs');

let now = dayjs();

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