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

zeitgeist

v0.0.1-0

Published

An immutable date, time and duration library based on the ISO-8601 format

Downloads

6

Readme

Build Status

This Package is not production ready yet.

Datetime

Transformations

Convert dates from one representation to another.

 export {
   toIso,
   toFragments,
   
   toIsoDate,
   toIsoTime,
   toFloat,
 
   removeTimeComponent,
   removeDateComponent,
 
   fromJulianDay,
   toJulianDay,
 
   fromUnixTimestamp,
   toUnixTimestamp,
 
   toJsDate,
   fromJsDate,
 } from './transformations/index';

Arithmetic calculations

All calculations are immutable and can be either called in singular or plural (eg. addSecond, addSeconds). They take the amound to be added/subtracted as the first argument and an ISO-8601 string as the second argument.

addSeconds(1, '2000-01-01T00:00:00'); // => '2000-01-01T00:00:01'

All arithmetic calculations are curried which enables intermediate functions to be defined easily. If you're writing a lecture scheduling system where one lecture lasts 1.5 hours you can easily define your own addLectureHour function.

const addLectureHour = addHours(1.5);
addLectureHour('2000-01-01T00:00:00'); // => '2000-01-01T01:50:00'

As all calculations are curried, so that functional composition is also possible.

import { pipe } from 'ramda';

const addLectureHour = pipe(
  addMinutes(30),    
  addHours(1),
);

addLectureHour('2000-01-01T00:00:00'); // => '2000-01-01T01:50:00'

Public Functions

import {
  addMicroseconds,
  addMicrosecond,
  addMilliseconds,
  addMillisecond,
  addSeconds,
  addSecond,
  addMinutes,
  addMinute,
  addHours,
  addHour,
  addDays,
  addDay,
  addWeeks,
  addWeek,
  addMonths,
  addMonth,
  addYears,
  addYear,

  subtractMilliseconds,
  subtractMillisecond,
  subtractMicroseconds,
  subtractMicrosecond,
  subtractSeconds,
  subtractSecond,
  subtractMinutes,
  subtractMinute,
  subtractHours,
  subtractHour,
  subtractDays,
  subtractDay,
  subtractWeeks,
  subtractWeek,
  subtractMonths,
  subtractMonth,
  subtractYears,
  subtractYear,
} from 'zeitgeist/datetime';

Round/Ceil/Floor

Zeitgeist allows you to round/ceil/floor dates.

floorHour('2000-01-01T11:12:23'); // => '2000-01-01T11:00:00' 

Public Functions

import {
  floorSecond,
  floorSeconds,
  floorMinute,
  floorMinutes,
  floorHour,
  floorHours,
  floorDay,
  floorDays,
  floorWeek,
  floorWeeks,
  floorMonth,
  floorMonths,
  floorYear,
  floorYears,

  ceilSecond,
  ceilSeconds,
  ceilMinute,
  ceilMinutes,
  ceilHour,
  ceilHours,
  ceilDay,
  ceilDays,
  ceilWeek,
  ceilWeeks,
  ceilMonth,
  ceilMonths,
  ceilYear,
  ceilYears,

  roundSecond,
  roundSeconds,
  roundMinute,
  roundMinutes,
  roundHour,
  roundHours,
  roundDay,
  roundDays,
  roundMonth,
  roundMonths,
  roundYear,
  roundYears,
  
  startOfSecond,
  startOfMinute,
  startOfHour,
  startOfDay,
  startOfWeek,
  startOfMonth,
  startOfYear,

  endOfSecond,
  endOfMinute,
  endOfHour,
  endOfDay,
  endOfWeek,
  endOfMonth,
  endOfYear,
} from 'zeitgeist/datetime';

Getters

Getting specific units out of an ISO-8601 string works as well. It accepts an ISO-8601 date string as first argument.

getYear('2000-01-01'); // => 2000

Public Functions

import {
  getWeekday,
  getWeekOfYear,
  getDayOfYear,

  getYear,
  getMonth,
  getDay,
  getHour,
  getMinute,
  getSecond,
} from 'zeitgeist/datetime';

Comparison

Compare takes two ISO-8601 date strings. They accept two ISO-8601 date strings as their arguments.

isBefore('2000-01-01', '2000-02-03'); // => true
isBetween({from: '2000', to: '2001'}, '2000-02-31'); // => true

Public Functions

import {
  isBetween,
  isBefore,
  isAfter,
  isSameOrAfter,
  isSameOrBefore,

  isSame,
  isSameYear,
  isSameMonth,
  isSameDay,
  isSameHour,
  isSameMinute,
  isSameSecond,
} from 'zeitgeist/datetime';

Time-Between

Knowing how much time there is between two given dates might be needed in your application.

hoursBetween('T11:00', 'T10:00'); // => 1
daysBetween('2000-01-01', '2000-01-02'); // => 1

// Dates between includes the first and last date.
datesBetween('2000-01-01', '2000-01-02'); // => ['2000-01-01', '2000-01-02']

Public functions

import {
  microsecondsBetween,
  millisecondsBetween,
  secondsBetween,
  minutesBetween,
  hoursBetween,

  datesBetween,
  daysBetween,
} from 'zeitgeist/datetime';

Date normalisation

import { normalize } from 'zeitgeist/datetime';

normalize('2000-13-01'); // => '2001-01-01' 

Durations

An immutable duration library based on the ISO-8601 format for durations.

Usage

Calculations

Note: Due to JavaScripts floating point precision issue milliseconds and 
microseconds can't be handled correctly by this library. In the future
there will be a high precision mode which will require decimal.js or
any other arbitrary-precision decimal library.

Public API

Finders

All finders accept an ISO-8601 duration string and respond a number. eg.: `findSeconds('PT1S') // => 1``

export {
  findSeconds,
  findMinutes,
  findHours,
  findDays,
  findWeeks,
  findMonths,
  findYears,
};

Calculations

All calculations accept an ISO-8601 duration string and respond an ISO-8601 duration string. eg.: addSeconds(1, 'PT0S') // => 'PT1S'

export {
  addMicroseconds,
  addMilliseconds,
  addSeconds,
  addMinutes,
  addHours,
  addDays,
  addWeeks,
  addMonths,
  addYears,

  subtractMilliseconds,
  subtractMicroseconds,
  subtractSeconds,
  subtractMinutes,
  subtractHours,
  subtractDays,
  subtractWeeks,
  subtractMonths,
  subtractYears,
};

Conversions

All conversions accept an ISO-8601 duration string and respond a number. eg.: asSeconds(1, 'PT1M1S') // => 61

export {
  asMicroseconds,
  asMilliseconds,
  asSeconds,
  asMinutes,
  asHours,
  // NOTE: other conversions are not possible see: Precision Issues
};

Transformations

Transformations are used to convert an ISO string to an object and the other way round.

import { toFragments } from 'pomeranian-durations';

toFragments('PT1S') // { ..., hours: 0, seconds: 1, ... }
import { toIso } from 'pomeranian-durations';

toIso({ seconds: 1 }) // 'PT1S'

Wrapper

The wrapper object is an immutable convenience object which makes multiple calculations on the same object easier.

import { addSeconds } from 'pomeranian-duration'

const duration = addSeconds('PT0S', 1); // => 'PT1S';
import { fromIso } from 'pomeranian-duration'

const duration = fromIso('PT0S').addSeconds(1).toIso(); // => 'PT1S';

Pomeranian is completely immutable.

import { fromFragments } from 'pomeranian-duration'

const duration1 = fromIso({ seconds: 0 });
const duration2 = duration1.addSeconds(1);

console.log(duration1 === duration2); // => false

Precision Issues

Because date components (years, months, weeks, days) can't be converted to other unites without date and timezone information, pomeranian-durations doesn't support them yet. To do precise arithmetic operations it is recommended to avoid years, months, weeks and days completely when using durations.

For more information have a look at http://www.ostyn.com/standards/scorm/samples/ISOTimeForSCORM.htm

Contributions

There is still lot to do and fix in order to get to the 0.0.1 milestone. Contributions are very welcome. Just ping me on twitter @webpapaya or comment in one of the open tickets you want to work on.