{"id":26119453,"url":"https://github.com/joshbeard/dynadot-price-checker","last_synced_at":"2026-04-23T10:34:55.566Z","repository":{"id":281107118,"uuid":"940402016","full_name":"joshbeard/dynadot-price-checker","owner":"joshbeard","description":"Monitor domain prices on Dynadot and notify","archived":false,"fork":false,"pushed_at":"2025-06-03T07:05:32.000Z","size":71,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-03T01:05:35.051Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"0bsd","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/joshbeard.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"zenodo":null}},"created_at":"2025-02-28T05:35:11.000Z","updated_at":"2025-05-08T02:04:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"71ba98cf-f87a-451b-9175-4398f5506c36","html_url":"https://github.com/joshbeard/dynadot-price-checker","commit_stats":null,"previous_names":["joshbeard/dynadot-price-checker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/joshbeard/dynadot-price-checker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joshbeard%2Fdynadot-price-checker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joshbeard%2Fdynadot-price-checker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joshbeard%2Fdynadot-price-checker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joshbeard%2Fdynadot-price-checker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joshbeard","download_url":"https://codeload.github.com/joshbeard/dynadot-price-checker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joshbeard%2Fdynadot-price-checker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32176989,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-23T02:19:40.750Z","status":"ssl_error","status_checked_at":"2026-04-23T02:17:55.737Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2025-03-10T12:54:58.247Z","updated_at":"2026-04-23T10:34:55.533Z","avatar_url":"https://github.com/joshbeard.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dynadot Domain Price Checker\n\nThis simple tool checks domain prices on Dynadot and can send notifications via [Pushover](https://pushover.net).\n\n## Setup and Usage (Local Node.js - Recommended)\n\nFollow these steps to get the checker running on your local machine:\n\n1.  **Clone the Repository:**\n    ```shell\n    git clone https://github.com/joshbeard/dynadot-price-checker.git\n    cd dynadot-price-checker\n    ```\n\n2.  **Create Your Configuration:**\n    Copy the sample configuration file, then edit `config.js` with your specific details (domains, API keys, notification preferences).\n    ```shell\n    cp config.sample.js config.js\n    nvim config.js\n    ```\n\n3.  **Install Dependencies:**\n    ```shell\n    npm install\n    ```\n\n4.  **Run the Checker Manually:**\n    To perform a one-time check:\n    ```shell\n    node check.js\n    ```\n\n## Automated Scheduling (macOS with launchd)\n\nFor macOS users, the `setup-launchd.sh` script configures the local Node.js application to run automatically.\n\n1.  **Prerequisites:**\n    *   Complete steps 1-3 from the \"Setup and Usage (Local Node.js)\" section.\n\n2.  **Configure and Run the Setup Script:**\n    *   Open `setup-launchd.sh` in a text editor.\n    *   **Important:**\n        *   Verify the `NODE_PATH` variable correctly points to your Node.js executable (e.g., `/opt/homebrew/bin/node`). Find your Node path by running `which node`.\n        *   Adjust the `StartCalendarInterval` (Hour and Minute values) if you wish to change the default schedule (13:00 / 1 PM).\n    *   Make the script executable and run it from the project directory:\n        ```shell\n        bash ./setup-launchd.sh\n        ```\n    This will set up a LaunchAgent to run `node check.js` according to the schedule you've set. Logs will be saved to `check.log` in the project directory.\n\n## Alternative Setup (Docker)\n\nIf you prefer a containerized environment:\n\n1.  **Prerequisites:**\n    * Docker and Docker Compose installed.\n    * Complete steps 1 and 2 from the \"Setup and Usage (Local Node.js)\" section.\n\n2.  **Build and Run with Docker Compose:**\n    *   To build the image and run the checker (foreground):\n        ```shell\n        docker-compose up --build\n        ```\n    *   To run in detached (background) mode:\n        ```shell\n        docker-compose up --build -d\n        ```\n    *   To stop the service:\n        ```shell\n        docker-compose down\n        ```\n    The `domain-price-history.json` file will also be persisted in your project directory.\n\n3.  **Scheduling Docker with Cron:**\n    Set up a cron job to run the Docker container. Edit your crontab (`crontab -e`):\n    ```cron\n    # Example: Run daily at 8 AM\n    0 8 * * * cd /path/to/your/dynadot-price-checker \u0026\u0026 docker-compose up\n    ```\n    Replace `/path/to/your/dynadot-price-checker` with the absolute path to where you cloned the project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoshbeard%2Fdynadot-price-checker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoshbeard%2Fdynadot-price-checker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoshbeard%2Fdynadot-price-checker/lists"}