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

@on_plc/timediff

v1.0.8

Published

A TypeScript library for calculating the difference between two dates with localization support for multiple languages.

Downloads

438

Readme

TimeDiff

TimeDiff — это TypeScript-библиотека для расчета разницы между двумя датами с поддержкой локализации, правильного форматирования на нескольких языках (включая русскую и английскую локали) и поддержки ISO 8601.

Установка

Установите пакет с помощью npm:

npm install @on_plc/timediff

Использование

Импортирование библиотеки

import TimeDiff from '@on_plc/timediff';

Примеры использования

Создание объекта TimeDiff

const date1 = new Date(2023, 0, 1, 0, 0, 0); // 1 января 2023 года
const date2 = new Date(2023, 0, 2, 12, 30, 15); // 2 января 2023 года

const timeDiff = new TimeDiff(date1, date2);

Поддержка ISO 8601 и языковых настроек

Можно создать объект TimeDiff из строки ISO 8601 или указать локаль для автоматического выбора языка.

const isoDiff = TimeDiff.fromISO("P1DT12H30M15S");
console.log(isoDiff.humanize('ru', 'long')); // Output: "1 день, 12 часов, 30 минут, 15 секунд"

Форматирование разницы в человекочитаемом формате

  • Полный формат (long) — с учетом множественного числа.
  • Короткий формат (short) — с сокращенными единицами времени.
  • ISO формат (iso) — представление в ISO 8601.
// Английский язык, полный формат
console.log(timeDiff.humanize('en', 'long')); 
// Output: "1 day, 12 hours, 30 minutes, 15 seconds"

// ISO формат
console.log(timeDiff.humanize('', 'iso'));
// Output: "P1DT12H30M15S"

Сложение и вычитание объектов TimeDiff

const date3 = new Date(2023, 0, 3);
const diff1 = new TimeDiff(date1, date2);
const diff2 = new TimeDiff(date2, date3);

const sum = TimeDiff.add(diff1, diff2);
const difference = TimeDiff.subtract(diff1, diff2);

console.log(sum.humanize('en', 'long')); // Форматирование суммы
console.log(difference.humanize('ru', 'short')); // Форматирование разности

API

new TimeDiff(date1: Date, date2: Date)

Создает объект TimeDiff, рассчитывая разницу между двумя датами.

fromISO(isoString: string): TimeDiff

Создает TimeDiff из строки ISO 8601.

humanize(locale?: string, format?: 'short' | 'long' | 'iso'): string

Форматирует разницу во времени в человекочитаемый формат. Формат 'iso' возвращает строку ISO 8601.

valueOf(): number

Возвращает разницу во времени в миллисекундах.

TimeDiff.add(a: TimeDiff, b: TimeDiff): TimeDiff

Складывает две разницы TimeDiff и возвращает новую разницу.

TimeDiff.subtract(a: TimeDiff, b: TimeDiff): TimeDiff

Вычитает одну разницу TimeDiff из другой и возвращает результат.

Участие в разработке

Будем рады вашим предложениям и отзывам! Пожалуйста, создавайте Issues и Pull Requests, чтобы помочь улучшить этот пакет.

Лицензия

MIT License