Extend JavaScript's Date object with lots of extremely useful functionality
date-ext is a JavaScript library for extending Date
objects with useful everyday methods.
Install from npm:
$ npm install date-ext
Formatting is now extremely simple and uses the same parameters as PHP's date function as well as the escape sequence (backslash).
Date.format(date, formatStr)
new Date().format(formatStr)
Want to schedule a function to be called at a certain time? Well, it couldn't be any easier.
Date.schedule(date, callback[, context])
new Date().schedule(callback[, context])
If the date is now or in the past it will simply be called immediately. Also, if you change your mind you can just prevent it from being called.
Date.unschedule(scheduleId)
new Date().unschedule(scheduleId)
The scheduleId
is returned by the call to schedule
and will be unique for every call. However, This will be undefined
in cases where the function was called immediately.
The library also comes packed with a few more simple - yet extremely useful - everyday methods.
new Date().addDays(days)
new Date().addHours(hours)
new Date().addMilliseconds(milliseconds)
new Date().addMinutes(minutes)
new Date().addMonths(months)
new Date().addSeconds(seconds)
new Date().addYears(years)
new Date().clear()
new Date().clearDate()
new Date().clearTime()
new Date().getDayOfYear()
new Date().getDaysInMonth()
new Date().getWeekOfYear()
new Date().getYearOfWeek()
new Date().isDaylightSavingTime()
new Date().isLeapYear()
date-ext
If you have any problems with this library or would like to see the changes currently in development browse our issues.
Developers should run all tests (locally) and ensure they pass before submitting a pull request.
Take a look at the documentation to get a better understanding of what the code is doing.
If that doesn't help, feel free to follow me on Twitter, @neocotic.