{"id":20638570,"url":"https://github.com/fengyuanchen/vue-barcode","last_synced_at":"2025-10-25T19:33:42.488Z","repository":{"id":57101405,"uuid":"89694852","full_name":"fengyuanchen/vue-barcode","owner":"fengyuanchen","description":"Bar code component for Vue.js","archived":false,"fork":false,"pushed_at":"2023-08-12T13:03:43.000Z","size":1831,"stargazers_count":205,"open_issues_count":1,"forks_count":32,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-28T23:06:45.509Z","etag":null,"topics":["bar-code","barcode","vue","vue-barcode","vue-component","vuejs"],"latest_commit_sha":null,"homepage":"https://fengyuanchen.github.io/vue-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/fengyuanchen.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":"2017-04-28T10:16:17.000Z","updated_at":"2025-03-27T10:48:19.000Z","dependencies_parsed_at":"2024-06-18T18:31:47.602Z","dependency_job_id":null,"html_url":"https://github.com/fengyuanchen/vue-barcode","commit_stats":{"total_commits":32,"total_committers":2,"mean_commits":16.0,"dds":0.09375,"last_synced_commit":"69feded5b5a176a45caa634b4e86e77c72f02a55"},"previous_names":["xkeshi/vue-barcode"],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fengyuanchen%2Fvue-barcode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fengyuanchen%2Fvue-barcode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fengyuanchen%2Fvue-barcode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fengyuanchen%2Fvue-barcode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fengyuanchen","download_url":"https://codeload.github.com/fengyuanchen/vue-barcode/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247266564,"owners_count":20910836,"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":["bar-code","barcode","vue","vue-barcode","vue-component","vuejs"],"created_at":"2024-11-16T15:18:32.146Z","updated_at":"2025-10-25T19:33:37.467Z","avatar_url":"https://github.com/fengyuanchen.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vue-barcode\n\n[![Coverage Status](https://img.shields.io/codecov/c/github/fengyuanchen/vue-barcode.svg)](https://codecov.io/gh/fengyuanchen/vue-barcode) [![Downloads](https://img.shields.io/npm/dm/@chenfengyuan/vue-barcode.svg)](https://www.npmjs.com/package/@chenfengyuan/vue-barcode) [![Version](https://img.shields.io/npm/v/@chenfengyuan/vue-barcode.svg)](https://www.npmjs.com/package/@chenfengyuan/vue-barcode) [![Gzip Size](https://img.shields.io/bundlephobia/minzip/@chenfengyuan/vue-barcode.svg)](https://unpkg.com/@chenfengyuan/vue-barcode/dist/vue-barcode.js)\n\n\u003e Bar code component for Vue 3, bases on [JsBarcode](https://github.com/lindell/JsBarcode). For Vue 2, check out the [`v1`](https://github.com/fengyuanchen/vue-barcode/tree/v1) branch.\n\n- [Docs](src/README.md)\n- [Demo](https://fengyuanchen.github.io/vue-barcode)\n\n## Main npm package files\n\n```text\ndist/\n├── vue-barcode.js         (UMD, default)\n├── vue-barcode.min.js     (UMD, compressed)\n├── vue-barcode.esm.js     (ECMAScript Module)\n├── vue-barcode.esm.min.js (ECMAScript Module, compressed)\n└── vue-barcode.d.ts       (TypeScript Declaration File)\n```\n\n## Getting started\n\n### Installation\n\nUsing npm:\n\n```shell\nnpm install jsbarcode@3 @chenfengyuan/vue-barcode@2\n```\n\nUsing pnpm:\n\n```shell\npnpm add jsbarcode@3 @chenfengyuan/vue-barcode@2\n```\n\nUsing Yarn:\n\n```shell\nyarn add jsbarcode@3 @chenfengyuan/vue-barcode@2\n```\n\nUsing CDN:\n\n```html\n\u003cscript src=\"https://unpkg.com/vue@3\"\u003e\u003c/script\u003e\u003c!-- Vue.js is required --\u003e\n\u003cscript src=\"https://unpkg.com/jsbarcode@3/dist/JsBarcode.all.min.js\"\u003e\u003c/script\u003e\u003c!-- JsBarcode is required --\u003e\n\u003cscript src=\"https://unpkg.com/@chenfengyuan/vue-barcode@2\"\u003e\u003c/script\u003e\n```\n\n### Usage\n\n```js\nimport { createApp } from 'vue';\nimport VueBarcode from '@chenfengyuan/vue-barcode';\n\nconst app = createApp({});\n\napp.component(VueBarcode.name, VueBarcode);\n```\n\n```html\n\u003cvue-barcode  value=\"Hello, World!\" :options=\"{ displayValue: false }\"\u003e\u003c/vue-barcode\u003e\n```\n\n## Browser support\n\nSame as Vue 3.\n\n## Versioning\n\nMaintained under the [Semantic Versioning guidelines](https://semver.org/).\n\n## License\n\n[MIT](https://opensource.org/licenses/MIT) © [Chen Fengyuan](https://chenfengyuan.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffengyuanchen%2Fvue-barcode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffengyuanchen%2Fvue-barcode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffengyuanchen%2Fvue-barcode/lists"}