chrono-utils
🕰️ 🥷 ⌚
chrono-utils
collects a number of helpful date and time utilities for TypeScript/Javascript.
These utility functions are particularly useful when building applications that need to use Unix timestamps and convert between human-readable and query-optimized (Unix) times.
Usage
Installation
Run npm install chrono-utils
. Exchange npm
with your chosen package manager if needed.
Basic importing and usage
const { convertDateToUnixTimestamp } = require('chrono-utils');
import { convertDateToUnixTimestamp } from 'chrono-utils';
convertDateToUnixTimestamp('2021-12-31T10:01:37Z');
Overview of functions
The below explains each of the functions in chrono-utils
and shows examples of their output.
convertDateToUnixTimestamp
Converts a regular date to (JS) Unix timestamp.
import { convertDateToUnixTimestamp } from 'chrono-utils';
convertDateToUnixTimestamp('2021-12-31T10:01:37Z');
convertDateToUnixTimestamp('2022-01-10T08:42:43+00:00');
datesWithinMaximumRange
Checks if two date objects are within a accepted maximum day range.
import { datesWithinMaximumRange } from 'chrono-utils';
const startDate = new Date('2022-11-30');
const endDate = new Date('2022-12-01');
const response = datesWithinMaximumRange(startDate, endDate);
getDateFromTimestamp
Takes a timestamp and returns the current date in YYYYMMDD
format.
import { getDateFromTimestamp } from 'chrono-utils';
getDateFromTimestamp('1664928000');
getCurrentDate
Returns the current date in YYYY-MM-DD
format.
The noDashes
option will strip any dashes between days, months, etc.
import { getCurrentDate } from 'chrono-utils';
const withDashes = getCurrentDate();
const withoutDashes = getCurrentDate(true);
getDateYesterday
Return the date of the day before today in YYYY-MM-DD
format.
The noDashes
option will strip any dashes between days, months, etc.
import { getDateYesterday } from 'chrono-utils';
const withDashes = getDateYesterday();
const withoutDashes = getDateYesterday(true);
getDiffInSeconds
Get the difference in seconds between two moments in time (i.e. Unix timestamps).
import { getDiffInSeconds } from 'chrono-utils';
getDiffInSeconds('1670873500000', '1670873600000');
getFirstDateInCurrentMonth
Returns the first date in the current month in YYYY-MM-DD
format.
import { getFirstDateInCurrentMonth } from 'chrono-utils';
getFirstDateInCurrentMonth();
getLastDateInCurrentMonth
Returns the last date in the current month in YYYY-MM-DD
format.
import { getLastDateInCurrentMonth } from 'chrono-utils';
getLastDateInCurrentMonth();
getMaxTimestampFromDate
Get maximum historical/past timestamp at midnight X number of days ago.
import { getMaxTimestampFromDate } from 'chrono-utils';
getMaxTimestampFromDate(10, 0);
getMaxTimestampFromDate(6, 6);
getMaxTimestampFromDate(4, -2);
getMillisecondsForDays
Returns the number of milliseconds for a count of days.
import { getMillisecondsForDays } from 'chrono-utils';
getMillisecondsForDays();
getTimestampForInputDate
Gets a corresponding Unix timestamp for a YYYYMMDD
date.
import { getTimestampForInputDate } from 'chrono-utils';
getTimestampForInputDate('20230101');
getTimestampForInputDate('20230101', 4);
getTimestampForInputDate('20230101', -11);
getTimestampsForPeriod
Calculates from
and to
timestamps for a provided period in days.
Using lastNumDays
means getting specified range excluding current day.
import { getTimestampsForPeriod } from 'chrono-utils';
getTimestampsForPeriod(1);
getTimestampsForPeriod(5, -3);
getTimestampsForPeriod(14, 7);
makeTwoDigitDate
Add leading zero if date (day, month) is under 10.
import { makeTwoDigitDate } from 'chrono-utils';
makeTwoDigitDate(1, 'day');
makeTwoDigitDate(11, 'month');
makeTwoDigitDate(new Date('2022-12-05'), 'day');
makeTwoDigitDate(new Date('2022-07-05'), 'month');
prettifyTime
Returns a prettified time format (DD:HH:MM:SS
) from a count of seconds.
import { prettifyTime } from 'chrono-utils';
prettifyTime(60);
prettifyTime(123456);
prettyTimeToSeconds
Converts a prettified time to a numberic count of seconds to represent the same value.
import { prettyTimeToSeconds } from 'chrono-utils';
prettyTimeToSeconds('00:09:28:24');
zuluToUnix
Converts Zulu time (UTC/GMT +0) to Unix timestamp.
import { zuluToUnix } from 'chrono-utils';
zuluToUnix('2022-11-21T10:41:57Z');