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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@icetee/time-ago

v1.0.0

Published

Simple timeago function takes same params as new Date(...)

Downloads

5

Readme

Timeago

Simple timeago function takes same params as new Date(...)

const ta = require('./time-ago.js')  // node.js
var ta = Timeago();	              // browser

ta.ago(..., [short])

ta.ago(new Date() - 1000);  // =>  "1 second ago"
ta.ago(new Date() - 2000);  // =>  "2 seconds ago"

ta.ago(1); // =>  "48 years ago"

// takes twitter's created_at date format, in your timezone
ta.ago('Sun Jun 28 19:44:05 +0000 2013'); // => "2 days ago"

// and UTC
ta.ago('1997-07-16T19:20+01:00'); // => "16 years ago"

// with optional short parameter
ta.ago(new Date() - 1000, true);  // =>  "1s"
ta.ago(new Date() - 1000 * 60, true); // => "1m"
ta.ago(new Date() - 1000 * 60 * 60, true); // => "1h"

ta.today()

ta.today() // function shows Day, Month, Date, Yr    
// ==> 'Monday, June 1, 1970'    

ta.nowfriendly(..., [short])

ta.nowfriendly(new Date() - 1000) // ==> 'right now'
ta.nowfriendly(new Date() - 60 * 1000) // ==> "1 minutes ago"

ta.timefriendly('x period')

ta.timefriendly('1 hour')  // convert to ms: seconds, minutes, hours, days, weeks, months, years ==> 3600000
// ==> 3600000

ta.timefriendly('1 hour')  // convert to ms: seconds, minutes, hours, days, weeks, months, years
// ==> 3600000

ta.mintoread(text, [altcmt, wpm])

Cool Medium like 'x min to read' feature

ta.mintoread('six hundred words of text')  // calculate based on 200 wpm reading speed
// ==> "3 min to read"

ta.mintoread('six hundred words of text', ' minutes to finish')  // optional alternate comment
// ==> "3 minutes to finish"

ta.mintoread('six hundred words of text', null, 300)  // alternate wpm
// ==> "2 min to read"

Translations

Only add Timeago parameter.

var ta = Timeago({
  ' ago': '',
  ' from now': ' most',
  'right now': 'épp most',
  ' min to read': 'olvasva',

  'Monday': 'Hétfő',
  'Tuesday': 'Kedd',
  'Wednesday': 'Szerda',
  'Thursday': 'Csütörtök',
  'Friday': 'Péntek',
  'Saturday': 'Szombat',
  'Sunday': 'Vasárnap',

  'January': 'Január',
  'February': 'Február',
  'March': 'Március',
  'April': 'Április',
  'May': 'Május',
  'June': 'Június',
  'July': 'Július',
  'August': 'Augusztus',
  'September': 'Szeptember',
  'October': 'Október',
  'November': 'November',
  'December': 'December',

  's': 's',
  'm': 'm',
  'h': 'h',
  'd': 'd',
  'w': 'w',
  'm': 'm',
  'y': 'y',

  'second': 'másodperce',
  'minute': 'perce',
  'hours': 'órája',
  'day': 'napja',
  'week': 'hete',
  'month': 'hónap',
  'years': 'éve',
});

Thanks

Chris Borkert @digplan