wiaxy-timeago
v0.4.0
Published
Smart auto-switching time-ago formatter with live update support.
Downloads
25
Maintainers
Readme
wiaxy-timeago
Smart time-ago formatting with automatic switching to full date when old, plus optional live auto-refresh.
Install
npm install wiaxy-timeagoUsage
import timeagoSmart from "wiaxy-timeago";
console.log(timeagoSmart("2025-01-01"));Smart Auto-Switch
Recent timestamps → "3 hours ago"
Old timestamps → "Jan 4, 2025 3:21 PM"
Live mode (auto update on screen)
<span data-timeago-smart="2025-02-01T10:00:00Z"></span>
<script type="module">
import { timeagoLiveAllSmart } from "wiaxy-timeago";
timeagoLiveAllSmart();
</script>