{"id":17638017,"url":"https://github.com/jonathanschndr/github-issue-widget","last_synced_at":"2025-07-25T04:08:44.237Z","repository":{"id":131336160,"uuid":"532065726","full_name":"JonathanSchndr/github-issue-widget","owner":"JonathanSchndr","description":":railway_track: GitHub Issue Widget bring your issue tracking to your website.","archived":false,"fork":false,"pushed_at":"2022-09-13T16:28:13.000Z","size":74,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-30T04:12:57.255Z","etag":null,"topics":["github","issue","tracker","widget"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/JonathanSchndr.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2022-09-02T20:11:58.000Z","updated_at":"2022-09-13T16:10:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"c2271603-4605-4cc7-972f-953fa8640911","html_url":"https://github.com/JonathanSchndr/github-issue-widget","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JonathanSchndr/github-issue-widget","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonathanSchndr%2Fgithub-issue-widget","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonathanSchndr%2Fgithub-issue-widget/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonathanSchndr%2Fgithub-issue-widget/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonathanSchndr%2Fgithub-issue-widget/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JonathanSchndr","download_url":"https://codeload.github.com/JonathanSchndr/github-issue-widget/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonathanSchndr%2Fgithub-issue-widget/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266952614,"owners_count":24011507,"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-07-25T02:00:09.625Z","response_time":70,"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":["github","issue","tracker","widget"],"created_at":"2024-10-23T03:24:48.571Z","updated_at":"2025-07-25T04:08:44.211Z","avatar_url":"https://github.com/JonathanSchndr.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e Currently work in progress! Please do not use productively.\n\n* Receive Token (CORS PROBLEM)\n* Check Cookie, if User already logedin\n* Integrate Oktokit.js\n* Integrate GitHub Form Schema HTML\n* Submit Issue\n* Define Readme\n\n# GitHub Issue Widget\n\n[![npm version][npm-version-src]][npm-version-href]\n[![npm downloads][npm-downloads-src]][npm-downloads-href]\n[![License][license-src]][license-href]\n\n\u003e GitHub Issue Widget for your Website\n\n- [✨ \u0026nbsp;Release Notes](https://github.com/JonathanSchndr/github-issue-widget/releases)\n- [🔴 Demo](#)\n\n## Features\n\nGitHub Issue Widget bring your issue tracking to your website.\n\n- [GitHub's form schema](https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema)\n- [Primer CSS](https://primer.style/) support\n- TypeScript Support\n\n\n## Setup\n\n```sh\nyarn add github-issue-widget # yarn\nnpm i github-issue-widget # npm\n```\n\n1. Create your own GitHub OAuth App (https://github.com/settings/developers)\n   1. Application name: name of the website (Issue Widget (Example))\n   2. Homepage URL: url of the page in which the widget was integrated (https://127.0.0.1:5173)\n   3. Authorization callback URL: url of the page in which the widget was integrated (https://127.0.0.1:5173/example/index.html)\n2. Generate a new client secret\n3. Copy client id and client secret\n\n## Basic usage\n\n```html\n\u003cdiv id=\"widget\"\u003e\u003c/div\u003e\n```\n\n```javascript\nimport 'github-issue-widget/dist/style.css';\nimport { GitHubIssueWidget } from 'github-issue-widget';\n\ndocument.addEventListener('DOMContentLoaded', () =\u003e {\n  document.getElementById('widget').innerHTML = new GitHubIssueWidget({\n    owner: 'JonathanSchndr',\n    repository: 'github-issue-widget',\n    branch: 'main',\n    issueSchemaPath: '.github/ISSUE_TEMPLATE/bug_report.yml',\n    appClientId: '',\n    appClientSecret: '',\n  }).render();\n})\n```\n\n## Development\n\n1. Clone this repository\n2. Install dependencies using `yarn install` or `npm install`\n3. Change vite.confg.js to `mode:'development'` / `minify:false` / `sourcemap:true`\n4. Start development server using `yarn dev \u0026\u0026 yarn build:watch` or `npm run dev \u0026\u0026 npm run build:watch`\n\n## License\n\nCopyright (c) 2022 Jonathan Schneider\n[MIT License](./LICENSE)\n\n\u003c!-- Badges --\u003e\n\n[npm-version-src]: https://img.shields.io/npm/v/github-issue-widget/latest.svg\n[npm-version-href]: https://npmjs.com/package/github-issue-widget\n[npm-downloads-src]: https://img.shields.io/npm/dt/github-issue-widget.svg\n[npm-downloads-href]: https://npmjs.com/package/github-issue-widget\n[license-src]: https://img.shields.io/npm/l/github-issue-widget.svg\n[license-href]: https://npmjs.com/package/github-issue-widget\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonathanschndr%2Fgithub-issue-widget","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjonathanschndr%2Fgithub-issue-widget","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonathanschndr%2Fgithub-issue-widget/lists"}