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

@empatheticbot/date-elements

v3.2.1

Published

Custom elements to express dates in relative format and be updated dynamically.

Downloads

2

Readme

date-elements

Custom elements to express dates in relative format and be updated dynamically.

Installation

$ npm install --save @empatheticbot/date-elements

Import

Import as ES module:

import '@empatheticbot/date-elements'

With a script tag:

<script type="module" src="./node_modules/@empatheticbot/date-elements/dist/index.js">

Note that the path is relative to the root of your project, this may not be the case in your application, so check to make sure your path is correct and the module is being served.

relative-date

Used to always express a date relative to now (ex: four hours ago, in 3 days). Currently, the resolution is fixed and will pick the largest unit of time that can express the resolution in a whole integer. Meaning, .5 minutes would never be used, it'd be 30 seconds.

Usage

<relative-date datetime="{ISO Date String}">
  {Fallback text date}
</relative-date>

Basic Example:

<relative-date datetime="2021-12-29T18:40:52.583Z"> 12/29/2021 </relative-date>

While it's not required, I recommend adding a date to the element text so users on older browsers that don't support custom elements still see the absolute date, even if the relative date fails.

With Relative Range:

Occasionally you'll want to switch between relative and absolute dates given a range (for instance, when something is months away, sometimes a precise date is more useful than in 3 months). This can be achieved using the attributes relative-range and relative-unit. For instance, the following will show the date as relative if it is within 2 days of the current date:

<relative-date
  relative-range="2"
  relative-unit="day"
  datetime="2021-12-29T18:40:52.583Z"
>
  12/29/2021
</relative-date>

Attributes

  • title will be set by the element and will be a long formatted date. This makes the date a little more accessible by offering the absolute date for those that seek it.
  • datetime (required) is an ISO datetime string representing the date we want to measure from the current date.
  • relative-range (optional) is the range at which the element will continue to show the relative date over the absolute. Defaults to Infinity.
  • relative-unit (optional) is the unit of time relative-range units refer to (year|month|day|hour|minute|second). The default is hour.

until-date

This behaves exactly like relative-date for any date that is in the future. The difference is that once the date has passed, it will clamp to the text now. This is useful for things such as countdowns.

Usage

<until-date datetime="{ISO Date String}"> {Fallback text date} </until-date>

Example:

<until-date datetime="2024-12-29T18:40:52.583Z"> 12/29/2024 </until-date>

Attributes

  • title will be set by the element and will be a long formatted date. This makes the date a little more accessible by offering the absolute date for those that seek it.
  • datetime (required) is an ISO datetime string representing the date we want to measure from the current date.

since-date

This behaves opposite to until-date. If the date is in the future, or within the last 2 minutes, it will read now. Otherwise, it will give the relative time since the date occurred.

Usage

<since-date datetime="{ISO Date String}"> {Fallback text date} </since-date>

Example:

<since-date datetime="2019-12-29T18:40:52.583Z"> 12/29/2019 </since-date>

Attributes

  • title will be set by the element and will be a long formatted date. This makes the date a little more accessible by offering the absolute date for those that seek it.
  • datetime (required) is an ISO datetime string representing the date we want to measure from the current date.

Development

To install dependencies and build the custom element:

npm install
npm run build

The resulting built custom element can be found in the dist directory. From here you can start a simple HTTP server with npm run start and navigate to http://localhost:3000/examples/. Note that if you make changes to source you will need to run npm run build again and refresh the page.

Tests should be written and live next to the source code it tests. The file name should match that of what it tests with an extension of .test.ts. Tests can be ran with npm run test.

Notes