Formato de tiempo ISO en JS de formato legible muy humano, como hace, hace segundos, etc.

// first install moment.js: npm i moment
import moment from 'moment'

let date = moment("2019-01-01", "YYYY-MM-DD");
console.log(date.fromNow()); // 3 years ago
Anxious Alligator