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

@iscodex/ms-parser

v1.0.2

Published

A lightweight, TypeScript-first library for parsing and formatting time durations with human-readable strings

Readme

@iscodex/ms-parser

A lightweight, TypeScript-first library for parsing and formatting time durations with human-readable strings.

NPM version NPM downloads NPM License Build Status

Features

  • 🚀 Lightweight: Zero dependencies
  • 📝 TypeScript-first: Full type safety and IntelliSense support
  • 🔄 Bidirectional: Parse strings to milliseconds and format milliseconds to strings
  • 🎯 Precise: Handles decimal values and negative numbers
  • 📚 Comprehensive: Supports all common time units
  • 🧪 Well-tested: 100% test coverage

Installation

npm install @iscodex/ms-parser
yarn add @iscodex/ms-parser
pnpm add @iscodex/ms-parser

Usage

Basic Usage

import ms from '@iscodex/ms-parser';

// Parse string to milliseconds
ms('2 hours'); // 7200000
ms('1d'); // 86400000
ms('10h'); // 36000000
ms('2.5 hrs'); // 9000000
ms('1y'); // 31557600000

// Format milliseconds to string
ms(60000); // "1m"
ms(2 * 60 * 1000); // "2m"
ms(ms('10 hours')); // "10h"
ms(60000, { long: true }); // "1 minute"
ms(2 * 60 * 1000, { long: true }); // "2 minutes"

Individual Functions

import { parse, format } from '@iscodex/ms-parser';

// Parse only
const milliseconds = parse('1.5h'); // 5400000

// Format only
const shortFormat = format(3600000); // "1h"
const longFormat = format(3600000, { long: true }); // "1 hour"

Advanced Usage

import ms, {
  parse,
  format,
  type FormatOptions,
  type ParseOptions,
} from '@iscodex/ms-parser';

// Custom parsing options
const result = parse('30m', { maxLength: 50 });

// Custom formatting options
const formatted = format(7200000, { long: true });

// Type-safe string values
type TimeString = `${number}h` | `${number}m` | `${number}s`;
const timeValue: TimeString = '2h';
const parsed = ms(timeValue); // 7200000

Supported Units

| Unit | Long Format | Short Format | | ------------ | ---------------------------------------------- | ------------ | | Years | years, year, yrs, yr | y | | Weeks | weeks, week | w | | Days | days, day | d | | Hours | hours, hour, hrs, hr | h | | Minutes | minutes, minute, mins, min | m | | Seconds | seconds, second, secs, sec | s | | Milliseconds | milliseconds, millisecond, msecs, msec | ms |

All units are case-insensitive and support both singular and plural forms.

API Reference

ms(value, options?)

Main function that can parse strings or format numbers.

Parameters:

  • value: string | number - String to parse or number to format
  • options?: FormatOptions | ParseOptions - Configuration options

Returns:

  • number when parsing strings
  • string when formatting numbers

parse(value, options?)

Parse a time string into milliseconds.

Parameters:

  • value: string - Time string to parse
  • options?: ParseOptions - Parsing configuration

Returns: number - Parsed time in milliseconds

Options:

  • maxLength?: number - Maximum string length (default: 100)

format(ms, options?)

Format milliseconds into a human-readable string.

Parameters:

  • ms: number - Milliseconds to format
  • options?: FormatOptions - Formatting configuration

Returns: string - Formatted time string

Options:

  • long?: boolean - Use long format (default: false)

Examples

Basic Parsing

ms('1s'); // 1000
ms('1m'); // 60000
ms('1h'); // 3600000
ms('1d'); // 86400000
ms('1w'); // 604800000
ms('1y'); // 31557600000

Decimal Values

ms('1.5h'); // 5400000
ms('0.5d'); // 43200000
ms('2.5 hours'); // 9000000

Negative Values

ms('-1h'); // -3600000
ms('-30m'); // -1800000

Different Formats

// Short format (default)
ms(60000); // "1m"
ms(3600000); // "1h"

// Long format
ms(60000, { long: true }); // "1 minute"
ms(120000, { long: true }); // "2 minutes"
ms(3600000, { long: true }); // "1 hour"
ms(7200000, { long: true }); // "2 hours"

Error Handling

The library throws descriptive errors for invalid inputs:

try {
  ms('invalid');
} catch (error) {
  console.log(error.message); // "Invalid time format: "invalid""
}

try {
  ms('a'.repeat(101));
} catch (error) {
  console.log(error.message); // "String too long. Maximum length is 100 characters"
}

try {
  format(NaN);
} catch (error) {
  console.log(error.message); // "Value must be a finite number"
}

Limitations

  • Currently doesn't support compound time strings like "1h 30m"
  • Maximum string length is 100 characters by default
  • Uses approximate year length (365.25 days)

Development

# Install dependencies
pnpm install

# Run tests
pnpm test

# Run tests in watch mode
pnpm run test:watch

# Run tests with coverage
pnpm run test:coverage

# Build the package
pnpm run build

# Lint the code
pnpm run lint

# Type check
pnpm run type-check

Requirements

  • Node.js >= 20.0.0
  • Supports ES Modules

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'feat: add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

MIT © Francisco Luis Rios Vega