Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
accessible-date
Advanced tools
accessible-date is an npm module that creates readable, accessible dates for screen readers. These dates are returned in Coordinated Universal Time (UTC), and are currently available in English, Spanish, French, and Italian with more languages to come.
Screen readers have a hard time deciphering what is and isn’t a date in HTML. For example, if a screen reader comes across the following timestamp:
<time id="timestamp" datetime="2001-05-15T19:30">May 15, 2001 - 7:30pm</time>
… the screen reader will read it as the following:
May one five, two zero zero one, seven three zero p m
accessible-date can change the format of a timestamp into something readable:
Tuesday, May fifteenth, two-thousand one at seven thirty p m
accesible-date can also process dates into military time as well:
Tuesday, May fifteenth, two-thousand one at zero seven thirty
NOTE: As of version
2.0.0
of accessible-date, we are now using native JavaScript import/exports. If you would like torequire
this module, you need to use versions1.3.0
or earlier.
You can install the module through npm:
npm install accessible-date --save
Then just import the module into your JavaScript file, and give it a timestamp and a settings object hash of options:
import accessibleDate from "accessible-date";
const timestampElem = document.getElementById("timestamp");
const newAccessibleDate = accessibleDate(timestampElem.getAttribute("datetime"), {
format: `DD, M D, Y at H MM m`,
language: `en`,
military: false
});
Then, you can assign that date as, for example, an aria-label
to a <time>
element:
timestampElem.setAttribute('aria-label', newAccessibleDate);
You will end up with a time attribute like this:
<time id="timestamp" datetime="2001-05-15T19:30" aria-label="Tuesday, May fifteenth, two-thousand one at seven thirty p m">May 15, 2001 - 7:30pm</time>
accessible-date takes two parameters: a timestamp and a settings object hash.
The timestamp needs to be in one of the following formats:
2001-05-15T19:30
2018-05-15T19:30:00Z
2018-05-31T07:30:00-02:00
2015-03-25
Wed Mar 25 2015 09:56:24 GMT+0100 (W. Europe Standard Time)
The settings object hash takes the following methods:
settings.format
- required
How the returned string is formatted. You can use any combination of the following values:
DD
- Day (ex: “Sunday,” “Monday,” etc)MM
- Minute (ex: “Twelve,” “Thirteen,” etc)M
- Month (ex: “January,” “February,” etc)D
- Date (ex: “First,” “Second,” etc)Y
- Year (ex: “Two thousand seventeen,” “Two thousand eighteen,” etc)H
- Hour (ex: “Eleven,” “Twelve,” etc)S
- Second (ex: “Twenty-eight,” “Twenty-nine,” etc)m
- Meridian (ex: “A M,” “P M”)settings.language
- default en
Set the language you want the output to be formatted to. Currently, it supports English (en
), Spanish (es
), French (fr
), and Italian (it
), but more languages will continue to be added.
settings.military
- default false
If set to true
, date will display in military time. Otherwise, it defaults to displaying in standard time.
accessible-date takes care of the values mentioned above in settings.format
, but words outside of those values should be added on your own. For example, to speak the time in French, you would add the word "heures" after saying the hour as a number. Simply add that into the settings.format
string, and accessible-date will ignore that value when parsing through the string.
[2.1.0] - 2024-01-07
FAQs
Readable, accessible dates for screen readers.
The npm package accessible-date receives a total of 1 weekly downloads. As such, accessible-date popularity was classified as not popular.
We found that accessible-date demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.