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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@asidd/chronos

v1.1.4

Published

Chronos is your new favorite date and time management library for JavaScript and TypeScript. Compact yet powerful, it is specifically crafted to offer the essential date and time operations you need. Its size? Less than 2kB when gzipped!

Downloads

19

Readme

Chronos

Chronos is your new favorite date and time management library for JavaScript and TypeScript. Compact yet powerful, it is specifically crafted to offer the essential date and time operations you need. Its size? Less than 2kB when gzipped!

Despite its small footprint, it doesn't compromise on functionalities, providing an easy and intuitive way to parse, format, and manipulate dates. So, why not give Chronos a try on your next project?

Installation

You can install Chronos via npm:

npm install chronos

Or, if you prefer yarn:

yarn add chronos

Make sure you have Node.js (>= 10.x.x) installed.

Usage

Using Chronos is straightforward. Here's how you can format a date:

import Chronos from "chronos";

let date = new Chronos("2023-08-22", "YYYY-MM-DD");
console.log(date.format("dddd, MMMM DD, YYYY")); // Output: "Tuesday, August 22, 2023"

API Documentation

The Chronos library exposes a single class Chronos with several methods:

constructor(date?: string | Date | Chronos, format?: string)

The constructor now takes two optional parameters. The first one can be a string, Date object, or another Chronos instance. If no parameter is passed, it will default to the current date and time. If a string is passed, a second parameter specifying the format of the string is required. The format string supports the following tokens:

  • YYYY: 4-digit year
  • YY: 2-digit year
  • MMMM: full month name
  • MMM: short month name
  • MM: 2-digit month
  • DD: 2-digit day
  • hh: 2-digit hour (12-hour format)
  • HH: 2-digit hour (24-hour format)
  • mm: 2-digit minute
  • ss: 2-digit second
  • A: AM/PM indicator

Example:

let date1 = new Chronos(); // Creates a Chronos instance with the current date and time
let date2 = new Chronos("2023-08-22", "YYYY-MM-DD"); // Creates a Chronos instance with the given date
let date3 = new Chronos(new Date()); // Creates a Chronos instance with the given Date object
let date4 = new Chronos(date2); // Creates a Chronos instance with the same date and time as date2

format(formatString: string, locale?: string): string

This method returns a string formatted according to the provided format string. The format string supports the same tokens as the constructor.

Example:

let date = new Chronos("2023-08-22", "YYYY-MM-DD");
console.log(date.format("dddd, MMMM DD, YYYY")); // Output: "Tuesday, August 22, 2023"

add(date: Chronos, value: number, unit: TimeUnit): this

Adds the specified amount of time to the current instance. unit can be 'years', 'months', 'days', 'hours', 'minutes', or 'seconds'. Returns the Chronos instance for chaining.

Example:

import Chronos, { add } from "@asidd/chronos";

let date = new Chronos("2023-08-22", "YYYY-MM-DD");
const date2 = add(date, 3, "days");
console.log(date2.format("YYYY-MM-DD")); // Output: "2023-08-25"

subtract(date: Chronos, value: number, unit: TimeUnit): this

Subtracts the specified amount of time from the current instance. unit can be 'years', 'months', 'days', 'hours', 'minutes', or 'seconds'. Returns the Chronos instance for chaining.

Example:

import Chronos, { subtract } from "@asidd/chronos";

let date = new Chronos("2023-08-22", "YYYY-MM-DD");
const date = subtract(date, 3, "days");
console.log(date.format("YYYY-MM-DD")); // Output: "2023-08-19"

diff(date1: Chronos, date2: Chronos, unit: TimeUnit = "milliseconds"): number

Computes the difference between the current instance and another date. The unit parameter is optional and defaults to 'milliseconds'. unit can be 'years', 'months', 'days', 'hours', 'minutes', 'seconds', or 'milliseconds'.

Example:

import Chronos, { diff } from "@asidd/chronos";

let date1 = new Chronos("2023-08-22", "YYYY-MM-DD");
let date2 = new Chronos("2023-08-25", "YYYY-MM-DD");
console.log(diff(date1, date2, "days")); // Output: -3

getWeeksInMonth(date: Chronos, startDay?: number, dayFormat?: string): string[][]

Returns a 2D array representing weeks and days in the current month. Each inner array represents a week and contains formatted date strings. You can customize the start day of the week and the format of the date string.

Example:

import Chronos, { getWeeksInMonth } from "@asidd/chronos";

let date = new Chronos("2023-08-22", "YYYY-MM-DD");
console.log(getWeeksInMonth(date, 0, "DD"));
// Output:
// [
//   ['30', '31', '01', '02', '03', '04', '05'],
//   ['06', '07', '08', '09', '10', '11', '12'],
//   ['13', '14', '15', '16', '17', '18', '19'],
//   ['20', '21', '22', '23', '24', '25', '26'],
//   ['27', '28', '29', '30', '31', '01', '02'],
// ]

getWeekdayNames(startDay?: number, format?: string, locale?: string): string[]

This is a static method that returns an array containing the names of the days of the week. The order of the days starts from the startDay parameter (0 for Sunday, 1 for Monday, etc.), which is optional and defaults to 0.

The format parameter is also optional and determines the format of the returned day names. It can be 'long', 'short', or 'narrow', and defaults to 'long'.

The locale parameter is optional as well and defaults to the default locale of the Chronos class. It determines the language in which the day names are returned.

import { getWeekdayNames } from "@asidd/chronos";

console.log(getWeekdayNames(1, "long", "en-US"));
// Output: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday']

isBetween(date: Chronos, start: Chronos, end: Chronos, unit?: TimeUnit, inclusive?: boolean): boolean

This function checks if the given date is between the two provided dates (start and end). All dates must be Chronos instances. The unit parameter is optional and defaults to 'milliseconds'. The inclusive parameter is also optional and defaults to false. If inclusive is true, the function will return true if the date is equal to the start or end.

Example:

import Chronos, { isBetween } from "@asidd/chronos";

// Creating Chronos instances
const date1 = new Chronos("2023-08-20", "YYYY-MM-DD");
const start = new Chronos("2023-08-20", "YYYY-MM-DD");
const end = new Chronos("2023-08-25", "YYYY-MM-DD");

// Checking if the date1 is between start and end (inclusive is false, default)
console.log(isBetween(date1, start, end)); // Output: false

// Checking if the date1 is between start and end (inclusive is true)
console.log(isBetween(date1, start, end, "days", true)); // Output: true

// Creating another Chronos instance
const date2 = new Chronos("2023-08-22", "YYYY-MM-DD");

// Checking if the date2 is between start and end (inclusive is false, default)
console.log(isBetween(date2, start, end)); // Output: true

// Checking if the date2 is between start and end (inclusive is true)
console.log(isBetween(date2, start, end, "days", true)); // Output: true

License

This project is licensed under the terms of the MIT License. For more details, see the LICENSE file.