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

timespan-parser

v1.2.0

Published

Parses timespans like systemd.time(7)

Downloads

1,354

Readme

timespan-parser

Node package for parsing timespans like systemd.time(7). The following is adapted from its man page:

PARSING TIME SPANS

When parsing, systemd will accept the same time span syntax. Separating spaces may be omitted. The following time units are understood:

  • msec, ms
  • seconds, second, sec, s
  • minutes, minute, min, m
  • hours, hour, hr, h
  • days, day, d
  • weeks, week, w
  • months, month, M (defined as 30.44 days)
  • years, year, y (defined as 365.25 days)

If no time unit is specified, seconds are assumed.

Examples for valid time span specifications:

2 h
2hours
48hr
1y 12month
55s500ms
300ms20s 5day

Parsing microseconds (usec, us) is not supported.

Install

$ npm install timespan-parser

Usage

const timespan = require("timespan-parser");

timespan.parse("17y 4w 6d 3h 45m 12s"); // returns 539430312
timespan.getString(539430312); // returns "17y 4w 6d 3h 45m 12s"

API

timespan.parse(timespan [, unit])

Converts a timespan string into a number of units.
timespan - string - The timespan string to be parsed.
unit - string - The unit to use for the conversion. Defaults to "seconds".
Return Value - number - The number of units represented by timespan.

timespan.getString(value [, opts])

Converts a numeric value to a timespan string. The timespan string produced uses the shortest label available.
value - number - The number of units to convert to a timespan string.
opts - object - Options object specifying any of the following values:
opts.unit - string - The unit that value represents. Defaults to "seconds".
opts.abbv - boolean - Whether to abbreviate the unit labels in the resulting string. Defaults to true.
opts.capitalize - boolean - Whether to set the first letter of each unit label to upper case in the resulting string. Defaults to false.
opts.unitSep - string - This string will be placed between each number and unit label in the resulting string. Defaults to "" when abbv is true. Defaults to " " when abbv is false.
opts.valueSep - string - This string will be placed between each value in the resulting string. Defaults to " ".
Return Value - string - A timespan string.

timespan(defaults)

Returns a new timespan object with the defaults modified.
defaults.unit - string - The new default unit.
defaults.abbv - boolean - The value to use for opts.abbv when no value is provided while calling timespan.getString().
defaults.capitalize - boolean - The value to use for opts.capitalize when no value is provided while calling timespan.getString().
defaults.unitSep - string - The value to use for opts.unitSep when no value is provided while calling timespan.getString().
defaults.valueSep - string - The value to use for opts.valueSep when no value is provided while calling timespan.getString().
Return Value - object - The same functions as above, with the default unit set to unit.

Examples

timespan.parse("4 hours 30 seconds");                        // returns 14430
timespan.parse("4 hours 30 seconds", "hours");               // returns 4.008333333333334
timespan.parse("4 hours 30 seconds", "msec");                // returns 14430000
timespan.parse("300ms20s5day");                              // returns 432020.3
timespan.parse("300ms20s5day", "y");                         // returns 0.013689897203843131
timespan.getString(456789);                                  // returns "5d 6h 53m 9s"
timespan.getString(0.013689897203843131, { unit:"y" });      // returns "5d 20s 300ms"
timespan.getString(456789, { abbv: false });                 // returns "5 days 6 hours 53 minutes 9 seconds"
timespan.getString(456789, { unitSep: " " });                // returns "5 d 6 h 53 m 9 s"
timespan.getString(456789, { valueSep: "" });                // returns "5d6h53m9s"
timespan.getString(456789, {
    capitalize: true,
    unit: "ms"
});                                                          // returns "7M 36S 789Ms"
timespan.getString(456789, {
    abbv: false,
    capitalize: true,
    valueSep: ", "
});                                                          // returns "5 Days, 6 Hours, 53 Minutes, 9 Seconds"

Changing the default unit:

const timespan = require("timespan-parser")({ unit: "ms" }); // Use milliseconds as the default unit

timespan.parse("4 hours 30 seconds");                        // returns 14430000
timespan.parse("300ms20s5day");                              // returns 432020300
timespan.getString(456789);                                  // returns "7m 36s 789ms"

Changing the default formatting options:

const timespan = require("timespan-parser")({
    abbv: false,
    capitalize: true,
    valueSep: ", "
});

timespan.getString(456789);                                  // returns "5 Days, 6 Hours, 53 Minutes, 9 Seconds"
timespan.getString(456789, {
    abbv: true,
    capitalize: false,
    valueSep: " "
});                                                          // returns "5d 6h 53m 9s"

CLI

When installed globally, two command line interfaces are available.

$ npm install --global timespan-parser

parse-timespan

$ parse-timespan timespan [ unit="seconds" ]

Writes the number of seconds (or other unit, if specified) that are represented by the provided timespan string

get-timespan

$ get-timespan value [ unit="seconds" ]

Writes a timespan string that represents the number of seconds (or other unit, if specified) provided by value

CLI Examples

$ parse-timespan "17y 4w 6d 3h 45m 12s"
539430312
$ parse-timespan "4 hours 30 seconds"
14430
$ parse-timespan "4 hours 30 seconds" hours
4.008333333333334
$ parse-timespan "4 hours 30 seconds" msec
14430000
$ parse-timespan 300ms20s5day
432020.3
$ parse-timespan "300ms20s5day" y
0.013689897203843131
$ get-timespan 539430312
17y 4w 6d 3h 45m 12s
$ get-timespan 456789 
5d 6h 53m 9s
$ get-timespan 0.013689897203843131 y
5d 20s 300ms