{"id":15475847,"url":"https://github.com/maxwondercorn/ember-cli-barcode","last_synced_at":"2025-04-22T14:11:02.419Z","repository":{"id":37336006,"uuid":"116326706","full_name":"maxwondercorn/ember-cli-barcode","owner":"maxwondercorn","description":"Ember addon to generate barcodes using the JSBarcode library","archived":false,"fork":false,"pushed_at":"2024-04-05T23:22:47.000Z","size":3637,"stargazers_count":7,"open_issues_count":17,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-04-25T06:02:51.140Z","etag":null,"topics":["barcode","ember-addon"],"latest_commit_sha":null,"homepage":"https://maxwondercorn.github.io/ember-cli-barcode/","language":"JavaScript","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/maxwondercorn.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2018-01-05T01:44:20.000Z","updated_at":"2024-05-28T05:46:03.938Z","dependencies_parsed_at":"2024-05-28T05:45:42.039Z","dependency_job_id":"7e2c1b73-d4a3-4ee3-b828-bf72dff209e0","html_url":"https://github.com/maxwondercorn/ember-cli-barcode","commit_stats":{"total_commits":256,"total_committers":10,"mean_commits":25.6,"dds":0.33984375,"last_synced_commit":"bc5c6d096f05833b40708f76e9d2195daf47f4a7"},"previous_names":[],"tags_count":28,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxwondercorn%2Fember-cli-barcode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxwondercorn%2Fember-cli-barcode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxwondercorn%2Fember-cli-barcode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxwondercorn%2Fember-cli-barcode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxwondercorn","download_url":"https://codeload.github.com/maxwondercorn/ember-cli-barcode/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250255700,"owners_count":21400410,"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":["barcode","ember-addon"],"created_at":"2024-10-02T03:20:35.290Z","updated_at":"2025-04-22T14:11:02.395Z","avatar_url":"https://github.com/maxwondercorn.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Latest NPM release][npm-badge]][npm-badge-url]\n![ci workflow](https://github.com/maxwondercorn/ember-cli-barcode/actions/workflows/ci.yml/badge.svg)\n[![License][license-badge]][license-badge-url]\n[![Ember Observer Score](https://emberobserver.com/badges/ember-cli-barcode.svg)](https://emberobserver.com/addons/ember-cli-barcode)\n\n[npm-badge]: https://img.shields.io/npm/v/ember-cli-barcode.svg\n[npm-badge-url]: https://www.npmjs.com/package/ember-cli-barcode\n[ember-observer-badge]: http://emberobserver.com/badges/ember-cli-barcode.svg\n[ember-observer-badge-url]: http://emberobserver.com/addons/ember-cli-barcode\n[license-badge]: https://img.shields.io/badge/License-MIT-yellow.svg\n[license-badge-url]: https://github.com/maxwondercorn/ember-cli-barcode/blob/master/LICENSE\n[dependencies-badge]: https://img.shields.io/david/maxwondercorn/ember-cli-barcode.svg\n[dependencies-badge-url]: https://david-dm.org/maxwondercorn/ember-cli-barcode\n[devdependencies-badge]: https://img.shields.io/david/dev/maxwondercorn/ember-cli-barcode.svg\n[devdependencies-badge-url]: https://david-dm.org/maxwondercorn/ember-cli-barcode#info=devDependencies\n\n# ember-cli-barcode\n\nAn Ember addon to render barcodes using the [JsBarcode](https://github.com/lindell/JsBarcode) library. See the [demo](https://maxwondercorn.github.io/ember-cli-barcode/) to experiment with many of the barcode options.\n\nThe addon adds accessibility attributes and elements to the generated barcodes. See the [Accessibility](#Accessibility) section below.\n\nCompatibility\n------------------------------------------------------------------------------\n\n* Ember.js v3.12 or above\n* Ember CLI v2.13 or above\n* Embroider safe and optimized\n* Node.js v10 or above\n\n\nInstallation\n------------------------------------------------------------------------------\n\n```bash\n  $ ember install ember-cli-barcode\n```\n\nBy default all barcode types are added to your app. See the [build configuration](#Build-Configuration) section for slimming your build\n\n## Simple Usage\n\nTo render a barcode provide the barcode value and the default options will generate a CODE128 barcode:\n\n```handlebars\n\u003cBarCode @value=\"abc123456\" /\u003e\n```\n\nwhich renders:\n\n![alt text](https://github.com/maxwondercorn/ember-cli-barcode/raw/main/images/abc123456.png \"CODE128 Barcode\")\n\n\nBy default, barcodes are rendered using the `svg` element. The element can be changed to `img` or `canvas` using the tagName property:\n\n```handlebars\n\u003cBarCode\n  @value=\"A45689\"\n  @tagName=\"img\"\n/\u003e\n\n\u003cBarCode\n  value=\"A45689\"\n  tagName=\"canvas\"\n/\u003e\n```\n\nUse the `img` tag if you want the ability to right-click copy or save the displayed barcode.\n\nSee the [Options](OPTIONS.md) readme for detailed barcode options.\n\nSee the [Contributing](CONTRIBUTING.md) guide for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxwondercorn%2Fember-cli-barcode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxwondercorn%2Fember-cli-barcode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxwondercorn%2Fember-cli-barcode/lists"}