{"id":20874993,"url":"https://github.com/servicestack/gistcafe-deno","last_synced_at":"2026-04-28T07:31:47.764Z","repository":{"id":57697991,"uuid":"331895358","full_name":"ServiceStack/gistcafe-deno","owner":"ServiceStack","description":"gist.cafe utils for Deno","archived":false,"fork":false,"pushed_at":"2021-01-27T06:18:17.000Z","size":5,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-09T22:07:07.613Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ServiceStack.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-01-22T09:18:14.000Z","updated_at":"2021-01-27T06:18:19.000Z","dependencies_parsed_at":"2022-09-26T21:01:59.547Z","dependency_job_id":null,"html_url":"https://github.com/ServiceStack/gistcafe-deno","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ServiceStack%2Fgistcafe-deno","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ServiceStack%2Fgistcafe-deno/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ServiceStack%2Fgistcafe-deno/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ServiceStack%2Fgistcafe-deno/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ServiceStack","download_url":"https://codeload.github.com/ServiceStack/gistcafe-deno/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243249011,"owners_count":20260768,"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":[],"created_at":"2024-11-18T06:40:41.802Z","updated_at":"2025-12-27T10:03:57.463Z","avatar_url":"https://github.com/ServiceStack.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Useful utils for [gist.cafe](https://gist.cafe) Deno Apps.\n\n## Usage\n\nSimple usage example:\n\n```ts\nimport { Inspect } from \"https://deno.land/x/gistcafe@v1.0.0/Inspect.ts\";\n\nlet orgName = \"denoland\";\n\nlet orgRepos = (await (await fetch(`https://api.github.com/orgs/${orgName}/repos`)).json())\n    .map((x:any) =\u003e ({\n        name: x.name,\n        description: x.description,\n        lang: x.language,\n        watchers: x.watchers_count,\n        forks: x.forks\n    }));\n\norgRepos.sort((a:any, b:any) =\u003e b.watchers - a.watchers);\n\nconsole.log(`Top 3 ${orgName} Github Repos:`);\nInspect.printDump(orgRepos.slice(0, 3));\n\nconsole.log(`\\nTop 10 ${orgName} Github Repos:`);\nInspect.printDumpTable(orgRepos.map((x:any) =\u003e ({\n    name: x.name, lang: x.lang, watchers: x.watchers, forks: x.forks\n})).slice(0, 10));\n```\n\nRun with:\n\n    $ deno run --allow-net=api.github.com --unstable index.ts\n\nWhich outputs:\n\n```\nTop 3 denoland Github Repos:\n[\n    {\n        name: deno,\n        description: A secure JavaScript and TypeScript runtime,\n        lang: TypeScript,\n        watchers: 71592,\n        forks: 3743\n    },\n    {\n        name: rusty_v8,\n        description: V8 javascript bindings for Rust,\n        lang: Rust,\n        watchers: 1534,\n        forks: 130\n    },\n    {\n        name: deno_std,\n        description: deno standard modules,\n        lang: TypeScript,\n        watchers: 1039,\n        forks: 121\n    }\n]\n\nTop 10 denoland Github Repos:\n+--------------------------------------------------+\n|       name       |    lang    | watchers | forks |\n|--------------------------------------------------|\n| deno             | TypeScript |    71592 |  3743 |\n| rusty_v8         | Rust       |     1534 |   130 |\n| deno_std         | TypeScript |     1039 |   121 |\n| vscode_deno      | TypeScript |      990 |    54 |\n| deno_install     | PowerShell |      767 |   105 |\n| deno_website2    | TypeScript |      674 |   571 |\n| deno_lint        | Rust       |      595 |    75 |\n| registry         | JavaScript |      151 |    52 |\n| doc_website      | TypeScript |      144 |    31 |\n| deno_third_party | null       |       74 |    39 |\n+--------------------------------------------------+\n```\n\n## Features and bugs\n\nPlease file feature requests and bugs at the [issue tracker](https://github.com/ServiceStack/gistcafe-deno/issues).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fservicestack%2Fgistcafe-deno","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fservicestack%2Fgistcafe-deno","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fservicestack%2Fgistcafe-deno/lists"}