1.9.0 • Published 3 months ago

time-speak v1.9.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

A natural language parser for dates, times, and durations

time-speak

NPM Version Downloads Stats

A tiny utility library with no dependencies that parses natural language dates, times, and intervals to either a Date instance or a numerical value in milliseconds. Here are some examples of possible inputs:

  • 'two weeks ago'
  • '1 day ago'
  • 'in 2 hours and 5 minutes'
  • 'in a month'
  • '2018-01-01T00:00:00.000Z'

Installation

Install it with your package manager of choice; for example, with pnpm:

pnpm add time-speak

Usage

!TIP Inputs can be written in plain english! Examples of valid values are 'in twenty minutes', '2 days ago', and '1 hour and 23 minutes ago'.

Import the parse function call it with a string containing a natural language representation of either a time in the future, past, or a numeric duration. The return value is a timestamp in milliseconds if the input is a duration, otherwise it is a Date instance.

import { parse } from 'time-speak'

const pastDate = parse('2 days and 4 hours ago')
const pastDateWithNumberWords = parse('two days and four hours ago')
const futureDate = parse('in 4 hours')
const durationMS = parse('6 months')

console.log({
  pastDateWithNumberWords, // 2023-12-19T13:02:39.768Z
  pastDate, // 2023-12-19T13:02:39.768Z
  futureDate, // 2023-12-21T21:02:39.768Z
  durationMS // 15552000000
})

API Reference

The standalone JSDoc-generated documentation can be found in DOCUMENTATION.md.

Release History

See CHANGELOG.md for more information.

License

Distributed under the MIT license. See LICENSE.md for more information.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request
1.9.0

3 months ago

1.8.1

4 months ago

1.8.0

4 months ago

1.7.0

4 months ago

1.6.0

5 months ago

1.5.1

5 months ago

1.5.0

5 months ago

1.4.1

5 months ago

1.4.0

5 months ago

1.3.3

5 months ago

1.3.2

5 months ago

1.3.0

5 months ago

1.2.0

5 months ago

1.1.0

6 months ago

0.0.21

11 months ago

0.0.22

11 months ago

0.0.23

11 months ago

0.0.20

12 months ago

0.0.19

12 months ago

0.0.18

1 year ago

0.0.17

1 year ago

0.0.16

1 year ago

0.0.15

1 year ago

0.0.14

1 year ago

0.0.13

1 year ago

0.0.12

1 year ago

0.0.11

1 year ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.3

1 year ago