# node-timeago **Repository Path**: mirrors_mikeal/node-timeago ## Basic Information - **Project Name**: node-timeago - **Description**: Humanized time for node apps - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # timeago A wrapper for John Resig's [Pretty Date function](http://ejohn.org/blog/javascript-pretty-date/). ![timeago](http://i.imgur.com/W1Zwy.png) #install npm install timeago #usage var timeago = require('timeago'); var pretty = timeago(+new Date()); console.log(pretty); // just now You can also use it in Express app templates: var app = express.createServer(); app.helpers({ timeago: require('timeago') });