Countdown timer with remote control.
- Web: just-countdown.eu
- Google Play Store: Just Countdown
- Microsoft Store: Just Countdown
demo.mp4
GET https://just-countdown.eu/api/control?id=my-countdown
Replace my-countdown
with your own countdown ID.
Response is described by type Data
in pages/api/control.ts.
Add any of them to the URL above.
start
(start countdown)pause
(pause countdown)togglePaused
(toggle paused state)showHours
(show hours)hideHours
(hide hours)toggleHours
(toggle hours visibility)set=60
(set countdown to 60 seconds)adjust=10
(add 10 more seconds to countdown)
-
GET https://just-countdown.eu/api/control?id=my-countdown&set=300&hideHours&start
Sets countdown to 5 minutes, hides hours and starts countdown.
-
GET https://just-countdown.eu/api/control?id=my-countdown&adjust=-30
Subtracts 30 seconds from countdown.
- Server may be off by few seconds.
npm ci
npm run dev