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

date-buddy

v0.0.3

Published

A lightweight JavaScript library that helps you display and work with dates in a human-friendly way.

Readme

date-buddy

npm version License: MIT

A tiny (~1KB), dependency-free JavaScript utility for human-friendly date/time formatting.

Features

  • 🕒 Convert dates to "time ago" format (e.g., "3 hours ago")
  • ⏳ Format future dates (e.g., "in 2 weeks")
  • 📅 Clean date formatting with optional weekday names
  • 💪 Works with both Date objects and date strings
  • ⚡ Zero dependencies

Installation

npm install date-buddy

Usage

// CommonJS
const { timeAgo, timeUntil, formatDate, formatDateWithDay } = require('date-buddy');

// ESM
import { timeAgo, timeUntil, formatDate, formatDateWithDay } from 'date-buddy';

// Past dates
timeAgo(new Date('2025-10-29'));  // "1 day ago"
timeAgo('2025-10-15');           // "15 days ago"

// Future dates
timeUntil('2026-03-25');         // "in 5 months"
timeUntil(new Date('2026-01-01')); // "in 2 months"

// Date formatting
formatDate('2025-10-29');        // "October 29, 2025"
formatDateWithDay('2025-10-29'); // "Wednesday, October 29, 2025"

API

timeAgo(date)

  • Input: Date object or date string
  • Returns: Human-readable string for past dates (e.g., "3 hours ago")
  • Invalid input: Returns "Invalid date"
  • Future dates: Returns suggestion to use timeUntil

timeUntil(date)

  • Input: Date object or date string
  • Returns: Human-readable string for future dates (e.g., "in 2 days")
  • Invalid input: Returns "Invalid date"
  • Past dates: Returns suggestion to use timeAgo

formatDate(date)

  • Input: Date object or date string
  • Returns: Formatted date string (e.g., "October 29, 2025")
  • Invalid input: Returns "Invalid date"

formatDateWithDay(date)

  • Input: Date object or date string
  • Returns: Formatted date with weekday (e.g., "Wednesday, October 29, 2025")
  • Invalid input: Returns "Invalid date"

Contributing

Contributions are welcome! Open issues or PRs on GitHub.

License

MIT — See LICENSE for details.