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

light-date-utils

v1.0.0

Published

Lightweight date utility functions using native JavaScript

Downloads

1

Readme

🗓️ light-date-utils

A lightweight, dependency-free JavaScript utility library for common date operations — using native Date and Intl.DateTimeFormat. Perfect for apps that want fast, minimal date utilities without pulling in heavy libraries like moment or dayjs.


📦 Features

  • addDays(date, days)

  • getStartOfWeek(date, weekStartsOn = 0)

  • formatDate(date, options?)

  • isToday(date)

  • isSameDay(date1, date2)

  • differenceInDays(date1, date2)


🚀 Installation

npm install light-date-utils

or

yarn add light-date-utils

🔧 Usage

import {
  addDays,
  getStartOfWeek,
  formatDate,
  isToday,
  isSameDay,
  differenceInDays,
} from 'light-date-utils';

const today = new Date();
const tomorrow = addDays(today, 1);

console.log('Tomorrow is:', formatDate(tomorrow, { year: 'numeric', month: 'short', day: 'numeric' }));
console.log('Is today?', isToday(today));
console.log('Start of week:', getStartOfWeek(today));



📚 API Reference

addDays(date, days)

Adds (or subtracts) days to a date.

addDays(new Date('2023-01-01'), 5); // → 2023-01-06

getStartOfWeek(date, weekStartsOn = 0)

Returns the start of the week.

  • weekStartsOn: 0 (Sunday) to 6 (Saturday)
getStartOfWeek(new Date('2023-01-04'));        // → Sunday
getStartOfWeek(new Date('2023-01-04'), 1);     // → Monday

formatDate(date, options?)

Formats a date using Intl.DateTimeFormat. Defaults to yyyy-MM-dd.

formatDate(new Date(), { month: 'long', day: '2-digit' });
// → "July 27"

isToday(date) Checks if the given date is today.

isToday(new Date()); // → true

isSameDay(date1, date2) Checks if two dates fall on the same day.

isSameDay(new Date('2023-01-01'), new Date('2023-01-01T23:59')); // → true

differenceInDays(date1, date2) Returns number of days between dates. Can be negative.

differenceInDays('2023-01-01', '2023-01-10'); // → 9
differenceInDays('2023-01-10', '2023-01-01'); // → -9

🧪 Testing

Tests are written using Vitest. To run tests:

npm install
npm test

🤝 Contributing

Feel free to open issues or PRs! Simple, readable utilities are the goal — let’s keep it lightweight.

📄 License

Implementation (c) 2025 Gulam Ashraf. MIT LICENSE