{"id":15640487,"url":"https://github.com/uki00a/carol","last_synced_at":"2026-04-02T02:41:18.823Z","repository":{"id":42679285,"uuid":"266490830","full_name":"uki00a/carol","owner":"uki00a","description":"A Deno port of carlo","archived":false,"fork":false,"pushed_at":"2024-01-13T11:54:11.000Z","size":165,"stargazers_count":75,"open_issues_count":16,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-09-29T08:49:56.643Z","etag":null,"topics":["deno","deno-module","gui"],"latest_commit_sha":null,"homepage":"https://deno.land/x/carol","language":"TypeScript","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/uki00a.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2020-05-24T07:25:06.000Z","updated_at":"2025-06-19T19:41:06.000Z","dependencies_parsed_at":"2024-01-13T12:55:27.190Z","dependency_job_id":null,"html_url":"https://github.com/uki00a/carol","commit_stats":{"total_commits":91,"total_committers":3,"mean_commits":"30.333333333333332","dds":0.02197802197802201,"last_synced_commit":"3c7e212babbe61bbb6ec2023c0451c7b40769413"},"previous_names":[],"tags_count":25,"template":false,"template_full_name":null,"purl":"pkg:github/uki00a/carol","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uki00a%2Fcarol","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uki00a%2Fcarol/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uki00a%2Fcarol/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uki00a%2Fcarol/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/uki00a","download_url":"https://codeload.github.com/uki00a/carol/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uki00a%2Fcarol/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000724,"owners_count":26082894,"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-08T02:00:06.501Z","response_time":56,"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":["deno","deno-module","gui"],"created_at":"2024-10-03T11:35:49.433Z","updated_at":"2025-10-09T01:14:27.040Z","avatar_url":"https://github.com/uki00a.png","language":"TypeScript","readme":"# Carol\n\n[![Build Status](https://github.com/uki00a/carol/workflows/ci/badge.svg)](https://github.com/uki00a/carol/actions)\n![https://img.shields.io/github/tag/uki00a/carol.svg](https://img.shields.io/github/tag/uki00a/carol.svg)\n[![license](https://img.shields.io/github/license/uki00a/carol.svg)](https://github.com/uki00a/carol)\n[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/carol/mod.ts)\n[![nest badge](https://nest.land/badge.svg)](https://nest.land/package/carol)\n\nCarol is a deno module to build desktop applications using Deno, HTML, and\nGoogle Chrome. This module is a port of\n[carlo](https://github.com/GoogleChromeLabs/carlo) to Deno.\n\n## Requirements\n\n- Deno🦕\n- Google Chrome (Carol uses locally-installed Google Chrome to provide UI.)\n\n## Examples\n\n**hello.ts**\n\n```ts\nimport { launch } from \"https://deno.land/x/carol/mod.ts\";\nimport { dirname, fromFileUrl, join } from \"https://deno.land/std/path/mod.ts\";\n\nconst app = await launch({\n  title: \"Hello Deno!\",\n  width: 480,\n  height: 320,\n});\n\napp.onExit().then(() =\u003e Deno.exit(0));\n\nawait app.exposeFunction(\"greet\", (name: string) =\u003e `Hello, ${name}!`);\nconst folder = join(dirname(fromFileUrl(import.meta.url)), \"public\");\napp.serveFolder(folder); // Serve contents from \"./public\" folder\nawait app.load(\"index.html\");\n```\n\n**public/index.html**\n\n```html\n\u003chtml\u003e\n\u003cbody\u003e\n  \u003cdiv\u003eHello, Deno!\u003c/div\u003e\n  \u003cscript\u003e\n    window.onload = async () =\u003e window.alert(await window.greet(\"Deno\"));\n  \u003c/script\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\nRun `hello.ts` from the CLI:\n\n```shell\n# If you are using Windows, you additionally need `--allow-env`!\n$ deno run --allow-read --allow-write --allow-run --allow-net hello.ts\n```\n\n## Links\n\n- [API Documentation](https://doc.deno.land/https/deno.land/x/carol/mod.ts)\n- [carlo](https://github.com/GoogleChromeLabs/carlo)\n- [lorca](https://github.com/zserge/lorca)\n\n## License\n\n- This module contains code adopted from the following projects. They have\n  preserved their individual licenses and copyrights.\n  - [carlo](https://github.com/GoogleChromeLabs/carlo)\n  - [lorca](https://github.com/zserge/lorca)\n- Additional work with this module is licensed under the MIT license.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuki00a%2Fcarol","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuki00a%2Fcarol","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuki00a%2Fcarol/lists"}