![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
react-until
Advanced tools
A tiny react component to present time passed/until in a humanistic format
A tiny component for those needing "humanistic" outputs rather than "to-the-second" accuracy to display the amount of time passed. For example, instead of item was added 37 seconds ago this component would render item was added just now. See Outputs section below for further information.
npm i -S react-since
import Since from 'react-since'
The component requires a date
prop and returns a <span></span>
containing the approximate time since that date.
const date = new Date().toString()
<Since date={date} />
The component by default is live meaning that dates will auto-update at set intervals. You can override this setting by passing a live
prop like this:
<Since date={'2019-05-24 10:30:00.000Z'} live={false} />
The default refresh rate is 60 seconds but you can specify a different value by passing a seconds prop like this:
<Since date={'2019-05-24 10:30:00.000Z'} live seconds={30} />
If the live
prop is set to false
then the seconds
prop is ignored.
Outputs are designed to be humanistic. The thinking is that users typically want to know a rough idea of how long ago an event took place and aren't concerned with highly accurate timings. See the table below for example outputs.
Time Difference | Output |
---|---|
30 seconds | "just now" |
32 minutes | "30 minutes ago" |
70 minutes | "an hour ago" |
3 hours | "a few hours ago" |
FAQs
A tiny react component to present time passed/until in a humanistic format
We found that react-until demonstrated a not healthy version release cadence and project activity because the last version was released 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.