{"id":20767751,"url":"https://github.com/dmnsgn/auto-reload-page","last_synced_at":"2026-02-15T04:32:15.516Z","repository":{"id":53191728,"uuid":"183277432","full_name":"dmnsgn/auto-reload-page","owner":"dmnsgn","description":"Auto reload a page at a specified interval.","archived":false,"fork":false,"pushed_at":"2024-07-06T13:21:42.000Z","size":47,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-03T20:01:37.122Z","etag":null,"topics":["automatic","frame","frameset","page","reload","reloader"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"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/dmnsgn.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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":"2019-04-24T17:36:33.000Z","updated_at":"2024-07-06T13:21:45.000Z","dependencies_parsed_at":"2024-11-18T01:35:20.340Z","dependency_job_id":null,"html_url":"https://github.com/dmnsgn/auto-reload-page","commit_stats":{"total_commits":8,"total_committers":1,"mean_commits":8.0,"dds":0.0,"last_synced_commit":"2fa1c9994882727a225cc60770a4b2b296482f41"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmnsgn%2Fauto-reload-page","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmnsgn%2Fauto-reload-page/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmnsgn%2Fauto-reload-page/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmnsgn%2Fauto-reload-page/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dmnsgn","download_url":"https://codeload.github.com/dmnsgn/auto-reload-page/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240952927,"owners_count":19884019,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["automatic","frame","frameset","page","reload","reloader"],"created_at":"2024-11-17T11:33:15.444Z","updated_at":"2026-02-15T04:32:10.496Z","avatar_url":"https://github.com/dmnsgn.png","language":"JavaScript","funding_links":["https://paypal.me/dmnsgn"],"categories":[],"sub_categories":[],"readme":"# auto-reload-page\n\n[![npm version](https://img.shields.io/npm/v/auto-reload-page)](https://www.npmjs.com/package/auto-reload-page)\n[![stability-stable](https://img.shields.io/badge/stability-stable-green.svg)](https://www.npmjs.com/package/auto-reload-page)\n[![npm minzipped size](https://img.shields.io/bundlephobia/minzip/auto-reload-page)](https://bundlephobia.com/package/auto-reload-page)\n[![dependencies](https://img.shields.io/librariesio/release/npm/auto-reload-page)](https://github.com/dmnsgn/auto-reload-page/blob/main/package.json)\n[![types](https://img.shields.io/npm/types/auto-reload-page)](https://github.com/microsoft/TypeScript)\n[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-fa6673.svg)](https://conventionalcommits.org)\n[![styled with prettier](https://img.shields.io/badge/styled_with-Prettier-f8bc45.svg?logo=prettier)](https://github.com/prettier/prettier)\n[![linted with eslint](https://img.shields.io/badge/linted_with-ES_Lint-4B32C3.svg?logo=eslint)](https://github.com/eslint/eslint)\n[![license](https://img.shields.io/github/license/dmnsgn/auto-reload-page)](https://github.com/dmnsgn/auto-reload-page/blob/main/LICENSE.md)\n\nAuto reload a page at a specified interval.\n\n[![paypal](https://img.shields.io/badge/donate-paypal-informational?logo=paypal)](https://paypal.me/dmnsgn)\n[![coinbase](https://img.shields.io/badge/donate-coinbase-informational?logo=coinbase)](https://commerce.coinbase.com/checkout/56cbdf28-e323-48d8-9c98-7019e72c97f3)\n[![twitter](https://img.shields.io/twitter/follow/dmnsgn?style=social)](https://twitter.com/dmnsgn)\n\n![](https://raw.githubusercontent.com/dmnsgn/auto-reload-page/main/screenshot.gif)\n\n## Installation\n\n```bash\nnpm install auto-reload-page\n```\n\n## Usage\n\n```js\nimport autoReloadPage from \"auto-reload-page\";\n\n// Open url in a separate window and reload every 10 seconds\nautoReloadPage(\"https://www.ipcc.ch/\", 10000);\n```\n\n## API\n\n\u003c!-- api-start --\u003e\n\n\u003ca name=\"autoReloadPage\"\u003e\u003c/a\u003e\n\n## autoReloadPage(url, [interval], [title])\n\nAuto reload a page at a specified interval.\n\n**Kind**: global function\n\n| Param      | Type                | Default                                                            | Description                                    |\n| ---------- | ------------------- | ------------------------------------------------------------------ | ---------------------------------------------- |\n| url        | \u003ccode\u003estring\u003c/code\u003e |                                                                    | Url to be opened                               |\n| [interval] | \u003ccode\u003enumber\u003c/code\u003e | \u003ccode\u003e60 \\* 1000\u003c/code\u003e                                            | Interval between each reload                   |\n| [title]    | \u003ccode\u003estring\u003c/code\u003e | \u003ccode\u003e\u0026quot;\\\u0026quot;Page content auto reloading\\\u0026quot;\u0026quot;\u003c/code\u003e | An optional page title for the separate window |\n\n\u003c!-- api-end --\u003e\n\n## License\n\nMIT. See [license file](https://github.com/dmnsgn/auto-reload-page/blob/main/LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmnsgn%2Fauto-reload-page","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdmnsgn%2Fauto-reload-page","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmnsgn%2Fauto-reload-page/lists"}