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 🙏

© 2026 – Pkg Stats / Ryan Hefner

beauty-date-utils

v1.0.5

Published

A lightweight date utility library.

Readme

beauty-date-utils

A lightweight, zero-dependency JavaScript date utility library for real-world applications like dashboards, forms, calendars, and APIs.

It provides simple helpers for date manipulation, formatting, comparison, validation, and time calculations.

Version

📦 Installation

npm install beauty-date-utils

Usage

import { formatDayMonthYear } from "beauty-date-utils";
const result = formatDayMonthYear("2026-04-12");
console.log(result); //12/04/2026
import { formatYearMonthDay } from "beauty-date-utils";
const result = formatYearMonthDay("2026-04-12T10:30:00");
console.log(result); // 2026-04-12
import { formatMonthDayYear } from "beauty-date-utils";
const result = formatMonthDayYear("2026-04-12T10:30:00");
console.log(result); //04/12/2026
import { addDays } from "beauty-date-utils";
const result = addDays("2026-04-12", 5);
console.log(formatDate(result, "YYYY-MM-DD")); //2026-04-17
import { differenceInHours } from "beauty-date-utils";
const hours = differenceInHours("2026-04-12T10:00:00", "2026-04-12T15:30:00");
import { isWeekday } from "beauty-date-utils";
const result1 = isWeekday(new Date("2026-04-13"));
console.log(result1); // true
import { startOfDay } from "beauty-date-utils";
const result = startOfDay("2026-04-12 15:45:30");
console.log(result); //Sun Apr 12 2026 00:00:00 GMT+0600
import { startOfMonth } from "beauty-date-utils";
const result = startOfMonth("2026-04-12");
console.log(result); // Wed Apr 01 2026 00:00:00 GMT+0600
import { endOfYear } from "beauty-date-utils";
const result = endOfYear("2026-04-12");
console.log(result); //Thu Dec 31 2026 00:00:00 GMT+0600

Add or subtract time from a date.

addDays(date, days);
addWeeks(date, weeks);
addMonths(date, months);
subtractDays(date, days);
subtractWeeks(date, weeks);

Difference Calculations

differenceInDays(date1, date2);
differenceInHours(date1, date2);
differenceInMinutes(date1, date2);
differenceInSeconds(date1, date2);
differenceInMonths(date1, date2);

Start & End of Time Units

startOfDay(date);
endOfDay(date);
startOfMonth(date);
endOfMonth(date);
startOfYear(date);
endOfYear(date);
getWeekStart(date);
getWeekEnd(date);

Formatting Utilities

formatDate(date, format);
formatISO(date);
formatTimeOnly(date);

Validation & Comparison

isValidDate(date);
isBefore(date1, date2);
isAfter(date1, date2);
isEqual(date1, date2);
isSameDay(date1, date2);
isWeekend(date);
isWeekday(date);

Utility Helpers

cloneDate(date);
parseDate(dateString);
fromTimestamp(timestamp);
toTimestamp(date);
getTime(date);
getNowDate();
getToday();
getTomorrow();
getYesterday();