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

time-wise

v2.0.2

Published

A versatile time management library, featuring utilities for duration, stopwatch, timer, etc.

Downloads

1,259

Readme

Time-Wise

A TypeScript library for handling time durations with high precision, flexible formatting, and rich manipulation capabilities. The Duration class provides methods to create, compare, and format time intervals in a readable way, supporting conversions between milliseconds, seconds, minutes, hours, and days.

Features

  • Flexible Duration Parsing: Parse from human-readable strings, ISO-8601 duration strings, or custom objects.
  • High Precision: Supports operations down to the millisecond level.
  • Intuitive Duration Manipulation: Add, subtract, compare, and format durations.
  • Date Calculations: Add or subtract durations from specific dates.

Installation

Install via npm:

npm install time-wise

Usage

If you're using ES Modules:

import { Duration, SECOND, MINUTE } from "time-wise";

Or if you're using CommonJS:

const { Duration, SECOND, MINUTE } = require("time-wise");

Or if you're using the browser include the script tag:

<script src="time-wise.iife.js"></script>
<script>
  const { Duration, SECOND, MINUTE } = TimeWise;
</script>

Creating a Duration

You can create a duration using milliseconds, an object, or a string.

// Using milliseconds
const durationOfMilliseconds = Duration.of(5_400_000); // 1 hour and 30 minutes

const duration = Duration.of(1 * HOUR + 30 * MINUTE); // 1 hour and 30 minutes (but readable!)

// From an object
const durationFromObject = Duration.fromObject({
  hours: 1,
  minutes: 30,
});

// From a string (e.g., "1 day 01:30:00" or ISO 8601 format)
const durationFromString = Duration.fromString("1 day 01:30:00");
const durationFromISO = Duration.fromISOString("P1DT1H30M");

Accessing Duration Properties

Retrieve various properties and representations of the duration in days, hours, minutes, etc.

console.log(duration.hours); // 1 hour
console.log(duration.minutes); // 30 minutes
console.log(duration.milliseconds); // 0 milliseconds

console.log(duration.inHours); // 1.5 hours
console.log(duration.inMinutes); // 90 minutes
console.log(duration.inMilliseconds); // 5_400_000 milliseconds

Performing Operations on Durations

You can add, subtract, multiply, and divide durations.

const duration1 = Duration.of(1 * HOUR); // 1 hour
const duration2 = Duration.of(30 * MINUTE); // 30 minutes

// Adding durations
const totalDuration = duration1.plus(duration2); // 1 hour 30 minutes

// Subtracting durations
const remainingDuration = duration1.minus(duration2); // 30 minutes

// Multiplying and dividing durations
const doubledDuration = duration1.multiplyBy(2); // 2 hours
const halvedDuration = duration1.divideBy(2); // 30 minutes

Comparing Durations

Use equals, isLongerThan, and isShorterThan for comparisons.

const duration1 = Duration.of(1 * HOUR); // 1 hour
const duration2 = Duration.of(30 * MINUTE); // 30 minutes

console.log(duration1.isLongerThan(duration2)); // true
console.log(duration1.equals(Duration.of(60 * MINUTE))); // true

Formatting Durations

The library supports various string formats for durations.

const duration = Duration.of(1 * HOUR + 1 * MINUTE + 1 * SECOND); // 1 hour, 1 minute, and 1 second

// Default string format
console.log(duration.toString()); // "01:01:01"

// ISO 8601 format
console.log(duration.toISOString()); // "PT1H1M1S"

Using Durations with Dates

Calculate dates in the future or past based on a duration.

const oneHour = Duration.of(1 * HOUR); // 1 hour
const now = new Date();

const oneHourLater = oneHour.after(now); // Date 1 hour from now
const oneHourBefore = oneHour.before(now); // Date 1 hour ago

API Reference

Duration Class

Static Methods

  • Duration.of(milliseconds: number): Duration
  • Duration.fromObject(object: ObjectDetails): Duration
  • Duration.fromString(str: string): Duration | null
  • Duration.fromISOString(str: string): Duration | null
  • Duration.parse(str: string): Duration | null
  • Duration.between(since: Date, until: Date): Duration
  • Duration.since(date: Date): Duration
  • Duration.until(date: Date): Duration
  • Duration.compare(duration1: Duration, duration2: Duration): number

Instance Properties

  • days, hours, minutes, seconds, milliseconds
  • inDays, inHours, inMinutes, inSeconds, inMilliseconds

Instance Methods

  • toObject(): ObjectDetails
  • toString(): string
  • toISOString(): string
  • toJSON(): string
  • equals(other: Duration): boolean
  • isLongerThan(other: Duration): boolean
  • isShorterThan(other: Duration): boolean
  • plus(other: Duration): Duration
  • minus(other: Duration): Duration
  • multiplyBy(factor: number): Duration
  • divideBy(divisor: number): Duration
  • negate(): Duration
  • absolute(): Duration
  • after(date: Date): Date
  • before(date: Date): Date

License

This library is licensed under the MIT License. See LICENSE for more information.

Contributing

Contributions are welcome! Please open an issue to discuss any major changes and check the CONTRIBUTING.md for guidelines on contributing to this project.