{"id":14962571,"url":"https://github.com/seanvelasco/barcode-kit","last_synced_at":"2026-02-12T17:02:38.194Z","repository":{"id":196884404,"uuid":"696969194","full_name":"seanvelasco/barcode-kit","owner":"seanvelasco","description":"\u003cBarcode/\u003e and \u003cBarcodeReader/\u003e components for React, Svelte, and Solid.js for reading and generating barcodes and QR codes","archived":false,"fork":false,"pushed_at":"2024-04-17T16:51:21.000Z","size":277,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-20T04:46:32.742Z","etag":null,"topics":["barcode","barcode-generator","barcode-reader","barcode-scanner","qrcode","qrcode-generator","qrcode-reader","qrcode-scanner","react","reactjs","svelte","sveltejs","sveltekit"],"latest_commit_sha":null,"homepage":"","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/seanvelasco.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-09-26T19:30:56.000Z","updated_at":"2024-04-02T00:55:17.000Z","dependencies_parsed_at":"2024-04-19T14:15:35.942Z","dependency_job_id":null,"html_url":"https://github.com/seanvelasco/barcode-kit","commit_stats":{"total_commits":16,"total_committers":1,"mean_commits":16.0,"dds":0.0,"last_synced_commit":"fd82f755db823cedc2d802d4672de148320187b8"},"previous_names":["seanvelasco/barcode-kit"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/seanvelasco/barcode-kit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seanvelasco%2Fbarcode-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seanvelasco%2Fbarcode-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seanvelasco%2Fbarcode-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seanvelasco%2Fbarcode-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/seanvelasco","download_url":"https://codeload.github.com/seanvelasco/barcode-kit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seanvelasco%2Fbarcode-kit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29373837,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["barcode","barcode-generator","barcode-reader","barcode-scanner","qrcode","qrcode-generator","qrcode-reader","qrcode-scanner","react","reactjs","svelte","sveltejs","sveltekit"],"created_at":"2024-09-24T13:30:02.136Z","updated_at":"2026-02-12T17:02:38.178Z","avatar_url":"https://github.com/seanvelasco.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# barcode-kit\n\nRead and generate barcodes and QR codes in React and Svelte.\n\n## Features\n\n- Read barcodes and QR codes from a webcam or camera\n- Generate barcodes and QR codes\n- React and Svelte components\n- Works on mobile\n- JavaScript-native with TypeScript support\n\n\n## Installation\n\n### React\n```bash\nnpm install react-barcode-kit\n```\n\n### Svelte\n```\nnpm install svelte-barcode-kit\n```\n\n## Usage\n\n### React\n\n#### Barcode Reader\n\n```tsx\nimport { useState } from \"react\"\nimport { BarcodeReader } from \"react-barcode-kit\"\n\nfunction App() {\n  const [barcode, setBarcode] = useState(null)\n\n  return (\n    \u003cdiv\u003e\n      \u003cBarcodeReader onScan={setBarcode}/\u003e\n      \u003cp\u003e{barcode}\u003c/p\u003e\n    \u003c/div\u003e\n  )\n}\n\nexport default App\n```\n\n#### Barcode Generator\n\n```tsx\nimport { Barcode } from \"react-barcode-kit\"\n\nfunction App() {\n\n  return (\n    \u003cdiv\u003e\n      \u003cBarcode\u003eYour data goes here\u003c/Barcode\u003e\n    \u003c/div\u003e\n  )\n}\n\nexport default App\n```\n\n### Svelte\n\n#### Barcode Reader\n\n```html\n\u003cscript\u003e\n    import { BarcodeReader } from \"svelte-barcode-kit\"\n    \n    let barcode = null\n    const handleBarcode = (data) =\u003e {\n        barcode = data\n    }\n\u003c/script\u003e\n\n\u003cBarcodeReader onScan={barcode}/\u003e\n\u003cp\u003e{barcode}\u003c/p\u003e\n```\n\n#### Barcode Generator\n\n```html\n\u003cscript\u003e\n    import { Barcode } from \"svelte-barcode-kit\"\n\u003c/script\u003e\n\n\u003cBarcode\u003eYour data goes here\u003c/Barcode\u003e\n```\n\n## Barcode Options\n\n## Acknowledgements\n\n- [zxing](https://github.com/zxing-js/library)\n- [JsBarcode](https://github.com/lindell/JsBarcode)\n\n## License","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseanvelasco%2Fbarcode-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseanvelasco%2Fbarcode-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseanvelasco%2Fbarcode-kit/lists"}