{"id":22109788,"url":"https://github.com/regevbr/node-red-contrib-ui-alarm-clock","last_synced_at":"2026-01-29T03:02:17.038Z","repository":{"id":65462241,"uuid":"414649177","full_name":"regevbr/node-red-contrib-ui-alarm-clock","owner":"regevbr","description":"Easily create alarm clocks based on a schedule that you can easily create at the node-red-dashboard frontend.","archived":false,"fork":false,"pushed_at":"2024-11-16T09:10:46.000Z","size":2122,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-26T19:55:00.001Z","etag":null,"topics":["alarm","alarm-clock","clock","dashboard","frontend","iot","node-red"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/regevbr.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-10-07T15:08:25.000Z","updated_at":"2025-09-17T06:13:16.000Z","dependencies_parsed_at":"2024-12-01T09:39:49.622Z","dependency_job_id":"e6544cc3-c745-4ca4-9d1f-e39ca79257e5","html_url":"https://github.com/regevbr/node-red-contrib-ui-alarm-clock","commit_stats":{"total_commits":77,"total_committers":2,"mean_commits":38.5,"dds":"0.23376623376623373","last_synced_commit":"467e69178347483c78cb96c8844e04b8adfa1054"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/regevbr/node-red-contrib-ui-alarm-clock","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/regevbr%2Fnode-red-contrib-ui-alarm-clock","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/regevbr%2Fnode-red-contrib-ui-alarm-clock/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/regevbr%2Fnode-red-contrib-ui-alarm-clock/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/regevbr%2Fnode-red-contrib-ui-alarm-clock/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/regevbr","download_url":"https://codeload.github.com/regevbr/node-red-contrib-ui-alarm-clock/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/regevbr%2Fnode-red-contrib-ui-alarm-clock/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28861652,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T22:56:21.783Z","status":"online","status_checked_at":"2026-01-29T02:00:06.714Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alarm","alarm-clock","clock","dashboard","frontend","iot","node-red"],"created_at":"2024-12-01T09:39:45.249Z","updated_at":"2026-01-29T03:02:17.024Z","avatar_url":"https://github.com/regevbr.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![npm version](https://badge.fury.io/js/node-red-contrib-ui-alarm-clock.svg)](https://badge.fury.io/js/node-red-contrib-ui-alarm-clock)\n\n# node-red-contrib-ui-alarm-clock\nA node-red-ui alarm clock for the Node-RED Dashboard.  \n\nBased on the awesome [node-red-contrib-ui-time-scheduler\n](https://github.com/fellinga/node-red-contrib-ui-time-scheduler)\n\n![](images/ui.png)\n\n## Install\n  \nYou can install this node directly from the \"Manage Palette\" menu in the Node-RED interface.  \nAlternatively, run the following command in your Node-RED user directory - typically `~/.node-red` on Linux or `%HOMEPATH%\\.nodered` on Windows\n\n        npm install node-red-contrib-ui-alarm-clock\n\n### Requirements ###\nnode-red v0.19 or above  \nnode-red-dashboard v2.10.0 (v2.15.4 or above would be ideal)\n  \n## Usage\n  \nAdd a alarm-clock-node to your flow. Open the dashboard, you will see an empty list.\nClick the plus sign at the top right corner of the node to create a new timer.\n  \n### Input\n  \nYou can inject timers via a msg property `payload` (see [restoring schedules after a reboot](#Restoring-schedules-after-a-reboot) section). If the injected msg has a property `disableAlarm` or `enableAlarm` the node will disable/enable the alarms output. Disabling/enabling works both with alarm name and index.\nIf you inject `getStatus` you can get the next trigger for each alarm (epoch).\n  \n### Output\n  \nWhenever you add, edit or delete a timer a JSON string is sent to the nodes top output. This JSON string contains all timers and settings.\n\nEvery other output (number of total outputs depends on how many alarms you have added) emits true once an alarm is triggered. Adjusting the refresh rate is possible within the node's options.\n\n### Restoring schedules after a reboot\n  \nYou can use the JSON string from the nodes top output to directly inject timers after a (re)boot or (re)deploy. See `examples` dir.\n\n![](images/flow.png)\n\nIf you changed the node-red \u003ca target=\"blank\" href=\"https://nodered.org/docs/user-guide/context#context-stores\"\u003econtextStorage to localfilesystem\u003c/a\u003e, timers are automatically saved and restored after a reboot.\n\n  \n## History\n  \nFind the changelog [here](CHANGELOG.md).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fregevbr%2Fnode-red-contrib-ui-alarm-clock","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fregevbr%2Fnode-red-contrib-ui-alarm-clock","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fregevbr%2Fnode-red-contrib-ui-alarm-clock/lists"}