Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mirek/node-moment-human

Human readable date input parser support for momentjs, ie: "3 hours ago", "in 1yr and 3 secs", etc.
https://github.com/mirek/node-moment-human

Last synced: about 1 month ago
JSON representation

Human readable date input parser support for momentjs, ie: "3 hours ago", "in 1yr and 3 secs", etc.

Awesome Lists containing this project

README

        

## Summary

Support for human readable date and duration parsing for momentjs, ie:

- `1 day ago` -> date, relative to passed now value or implicit current date.
- `1 year` -> duration
- ...

## Installation

npm install moment-human --save

## Usage

momentHuman = require 'moment-human'
console.log momentHuman.parse '1 day ago'

(this will change to standard momentjs plugin)