A dirt simple library for parsing and formatting human readable dates (Today, Yesterday, Last Monday). A port of https://github.com/xaviershay/kronic to make it into a Node.js module.
$ npm install kronic-node
Kronic = require 'kronic-node'
# Parse string into Date.
Kronic.parse 'Today'
# Human format from Date.
Kronic.format new Date()
$ npm test