
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
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
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.