npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

extdate

v0.3.7

Published

extension of javascript's Date object

Downloads

48

Readme

npm version Build Status codecov

ExtDate

ExtDate is a simple and lite module to deal with Date object in javascript (and typescript), strongly inspired by Rails "Date" and "Time" objects.

Installation and Usage

npm

npm install extdate

To import the ExtDate functionality:

import { ExtDate } from 'extdate'

// create ExtDate instance from year, month and day
let date: ExtDate = new ExtDate(2017, 3, 8);

// create ExtDate instance from today's date
let today: ExtDate = new ExtDate();

// create ExtDate instance from javascript's Date object
let dateFromJS: ExtDate = new ExtDate(new Date());

Available methods

Available instance methods are as follows:

Getter/Setter

| method name | args => return value | description | | :--- | :--- | :--- | | unixTime | () => number | returns unixtime | | miliSecond | () => number | returns the value at 'mili-second' digit | | second | () => number | returns the value at 'second' digit | | minute | () => number | returns the value at 'minute' digit | | hour | () => number | returns the value at 'hour' digit | | day | () => number | returns the value at 'day' digit | | month | () => number | returns the value at 'month' digit | | year | () => number | returns the value at 'year' digit | | dayOfWeek | (format?: string) => string | returns day of week in natural language (in format language) | | dayOfWeekInShort | (format?: string) => string |returns day of week in short in natural language (in format language) | | toArray | () => number[] | returns each digit of the date, [2017, 3, 5, ...] |

Date Calculations

| method name | args => return value | description | | :--- | :--- | :--- | | nextSecond | (step?: number) => ExtDate | returns ExtDate object of step-second after (step is 1 if nothing given) | | nextMinute | (step?: number) => ExtDate | returns ExtDate object of step-minute after (step is 1 if nothing given) | | nextHour | (step?: number) => ExtDate | returns ExtDate object of step-hour after (step is 1 if nothing given) | | nextDay | (step?: number) => ExtDate | returns ExtDate object of step-day after (step is 1 if nothing given) | | nextWeek | (step?: number) => ExtDate | returns ExtDate object of step-week after (step is 1 if nothing given) | | nextMonth | (step?: number) => ExtDate | returns ExtDate object of step-month after (step is 1 if nothing given) | | nextYear | (step?: number) => ExtDate | returns ExtDate object of step-year after (step is 1 if nothing given) | | prevSecond | (step?: number) => ExtDate | returns ExtDate object of step-second before (step is 1 if nothing given) | | prevMinute | (step?: number) => ExtDate | returns ExtDate object of step-minute before (step is 1 if nothing given) | | prevHour | (step?: number) => ExtDate | returns ExtDate object of step-hour before (step is 1 if nothing given) | | prevDay | (step?: number) => ExtDate | returns ExtDate object of step-day before (step is 1 if nothing given) | | prevWeek | (step?: number) => ExtDate | returns ExtDate object of step-week before (step is 1 if nothing given) | | prevMonth | (step?: number) => ExtDate | returns ExtDate object of step-month before (step is 1 if nothing given) | | prevYear | (step?: number) => ExtDate | returns ExtDate object of step-year before (step is 1 if nothing given) | | beginningOfDay | () => ExtDate | returns ExtDate object of the beginning of the day | | beginningOfWeek | () => ExtDate | returns ExtDate object of the beginning of the week | | beginningOfMonth | () => ExtDate | returns ExtDate object of the beginning of the month | | beginningOfYear | () => ExtDate | returns ExtDate object of the beginning of the year | | endOfDay | () => ExtDate | returns ExtDate object of the end of the day | | endOfWeek | () => ExtDate | returns ExtDate object of the end of the week | | endOfMonth | () => ExtDate | returns ExtDate object of the end of the month | | endOfYear | () => ExtDate | returns ExtDate object of the end of the year |

Boolean Methods

| method name | args => return value | description | | :--- | :--- | :--- | | isSameDay | (date: ExtDate) => boolean | returns whether given 2 days are same or not | | isSameWeek | (date: ExtDate) => boolean | returns whether given 2 days are in a same week or not | | isSameMonth | (date: ExtDate) => boolean | returns whether given 2 days are in a same month or not | | isSameYear | (date: ExtDate) => boolean | returns whether given 2 days are in a same year or not |

Formatter

| method name | args => return value | description | | :--- | :--- | :--- | | strftime | (formatString: string, lang?: string) => string | returns arbitary format of time, lang is used only when day of week (including in short) is embedded |

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

License

The gem is available as open source under the terms of the MIT License.