{"id":30351068,"url":"https://github.com/tominkoltd/ardalive","last_synced_at":"2026-01-20T17:29:09.422Z","repository":{"id":309098891,"uuid":"1035159882","full_name":"tominkoltd/ardalive","owner":"tominkoltd","description":"ArdaLive extension for VS Code - enabling live preview of edited HTML/CSS directly in the browser","archived":false,"fork":false,"pushed_at":"2025-09-10T19:26:01.000Z","size":262,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-24T13:58:19.702Z","etag":null,"topics":["css","hot-reload","html","live-reload","morphdom","vscode-extension"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tominkoltd.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"ko_fi":"vanthomas"}},"created_at":"2025-08-09T19:28:39.000Z","updated_at":"2025-09-10T19:26:04.000Z","dependencies_parsed_at":"2025-09-10T21:18:21.338Z","dependency_job_id":"bbe15318-3787-44c9-a826-f473ab267ddb","html_url":"https://github.com/tominkoltd/ardalive","commit_stats":null,"previous_names":["tominkoltd/ardalive"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/tominkoltd/ardalive","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tominkoltd%2Fardalive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tominkoltd%2Fardalive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tominkoltd%2Fardalive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tominkoltd%2Fardalive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tominkoltd","download_url":"https://codeload.github.com/tominkoltd/ardalive/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tominkoltd%2Fardalive/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279001102,"owners_count":26082991,"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","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","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":["css","hot-reload","html","live-reload","morphdom","vscode-extension"],"created_at":"2025-08-18T23:00:54.815Z","updated_at":"2025-10-09T08:17:25.779Z","avatar_url":"https://github.com/tominkoltd.png","language":"JavaScript","funding_links":["https://ko-fi.com/vanthomas"],"categories":[],"sub_categories":[],"readme":"# ArdaLive\n\n**Lightning-fast HTML live preview** in your browser while editing in VS Code.  \nNo full page reloads. No extra tooling. Just type and watch your page update instantly.\n\nCSS hot-swap for linked stylesheets is included as a bonus.\n\n---\n\n## ✨ Features\n\n- **Live HTML preview** — diffs and updates `\u003cbody\u003e` in place (keeps scroll, focus, JS state).\n- **CSS hot-swap** — linked `.css` files are swapped via blob URLs without a flash.\n- Works with plain HTML/CSS, no frameworks required.\n- Local HTTP + WebSocket server, auto-starts with VS Code.\n- Status indicator in the VS Code status bar.\n- MIT licensed, includes [morphdom](https://github.com/patrick-steele-idem/morphdom).\n\n---\n\n## 🚀 Getting Started\n\n1. Install the extension from the VS Code Marketplace.  \n2. Open your project folder in VS Code.  \n3. Check the **ArdaLive** status bar item for the local preview URL.  \n4. Open your browser to `http://localhost:\u003cport\u003e`  \n   - If you open the root, you’ll see the init page.  \n   - You can also open specific `.html` files directly.\n\nStart editing your `.html` file — changes to the `\u003cbody\u003e` appear instantly in the browser.\n\n---\n\n## 🛠 How It Works\n\n- A lightweight client script connects to the ArdaLive WebSocket server.\n- When you edit an HTML file, only the `\u003cbody\u003e` content is sent to the browser.\n- The browser uses **morphdom** to patch the live DOM in place.\n- When you edit a linked CSS file, the corresponding `\u003clink\u003e` element is hot-swapped with a blob URL.\n\n---\n\n## 📦 Configuration\n\nYou can change the preview port in settings:\n\n| Setting            | Description                         | Default |\n|--------------------|-------------------------------------|---------|\n| `ardaLive.port`    | Preferred HTTP preview port         | 8242    |\n\n---\n\n## 📋 Notes \u0026 Limitations\n\n- HTML live preview is the primary feature.\n- CSS updates work **only** for `\u003clink rel=\"stylesheet\"\u003e` tags pointing to local files.\n- Inline `\u003cstyle\u003e` tags in `\u003chead\u003e` are not updated (planned for a future release).\n- Runs on `localhost` only — no remote connections.\n- If your HTML has multiple `\u003cbody\u003e` tags (please don’t 😏), only the first is updated.\n\n---\n\n## 📅 Roadmap\n\n- Live updates for inline `\u003cstyle\u003e` tags.\n- `\u003chead\u003e` diff for meta/script/link changes.\n- Optional multi-client sync (scroll, form state).\n\n---\n\n## 📜 License\n\n- **ArdaLive** © 2025 Thomas Webb / Tominko Ltd — [MIT License](LICENSE)\n- Includes **morphdom** © 2014-2023 Patrick Steele-Idem — MIT License\n\n---","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftominkoltd%2Fardalive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftominkoltd%2Fardalive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftominkoltd%2Fardalive/lists"}