Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mubaidr/Javascript-Barcode-Reader
Simple and Fast Barcode decoder with support of Code128, Code93, Code39, Standard/Industrial 2 of 5, Interleaved 2 of 5, Codabar, EAN-13, EAN-8 barcodes in javascript.
https://github.com/mubaidr/Javascript-Barcode-Reader
barcode hacktoberfest javascript node reader scanner
Last synced: 3 months ago
JSON representation
Simple and Fast Barcode decoder with support of Code128, Code93, Code39, Standard/Industrial 2 of 5, Interleaved 2 of 5, Codabar, EAN-13, EAN-8 barcodes in javascript.
- Host: GitHub
- URL: https://github.com/mubaidr/Javascript-Barcode-Reader
- Owner: mubaidr
- License: mit
- Created: 2018-06-11T03:36:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-04T19:57:27.000Z (3 months ago)
- Last Synced: 2024-08-04T21:49:18.850Z (3 months ago)
- Topics: barcode, hacktoberfest, javascript, node, reader, scanner
- Language: TypeScript
- Homepage: https://mubaidr.js.org/Javascript-Barcode-Reader/
- Size: 7.59 MB
- Stars: 188
- Watchers: 3
- Forks: 27
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Javascript-Barcode-Reader
Simple & Fast Barcode decoder for Browsers and Node.js capapable of reading Code128 (UCC/EAN-128), Code93, Code39, Standard/Industrial 2 of 5, Interleaved 2 of 5, Codabar and EAN-13 barcodes.
[![Build Status](https://travis-ci.org/mubaidr/Javascript-Barcode-Reader.svg?branch=master)](https://travis-ci.org/mubaidr/Javascript-Barcode-Reader)
[![codebeat badge](https://codebeat.co/badges/8f27170b-909e-489f-ae93-459664c47422)](https://codebeat.co/projects/github-com-mubaidr-javascript-barcode-reader-master)
[![codecov](https://codecov.io/gh/mubaidr/Javascript-Barcode-Reader/branch/master/graph/badge.svg)](https://codecov.io/gh/mubaidr/Javascript-Barcode-Reader)
[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors)
[![Rate on Openbase](https://badges.openbase.com/js/rating/javascript-barcode-reader.svg)](https://openbase.com/js/javascript-barcode-reader?utm_source=embedded&utm_medium=badge&utm_campaign=rate-badge)[![NPM](https://nodei.co/npm/javascript-barcode-reader.png)](https://nodei.co/npm/javascript-barcode-reader/)
## Try now
https://codesandbox.io/s/javascript-barcode-reader-liium
## Available decoders
- EAN-13
- EAN-8
- Code-39
- Code-93
- Code-2of5
- standard
- Interleaved
- Codabar
- Code-128 (UCC/EAN-128)## How to use
### Install
Recommended way to install is by using package manager (npm, yarn etc):
```bash
npm i javascript-barcode-reader
```or use cdn:
```html
```
or download manually:
[javascript-barcode-reader](https://unpkg.com/javascript-barcode-reader)
### Node.js
```ts
import javascriptBarcodeReader from 'javascript-barcode-reader'javascriptBarcodeReader({
/* Image file Path || {data: Uint8ClampedArray, width, height} || HTML5 Canvas ImageData */
image: source,
barcode: 'code-2of5',
// barcodeType: 'industrial',
options: {
// useAdaptiveThreshold: true // for images with shaded/ gradient portions
// singlePass: true
}
})
.then(code => {
console.log(code)
})
.catch(err => {
console.log(err)
})
```### Browser
`javascriptBarcodeReader` will be available as global in Browsers.
```js
javascriptBarcodeReader({
/* Image ID || HTML5 Image || HTML5 Canvas || HTML5 Canvas ImageData || Image URL */
image: source,
barcode: 'code-2of5',
// barcodeType: 'industrial',
options: {
// useAdaptiveThreshold: true // for images with shaded/ gradient portions
// singlePass: true
}
})
.then(code => {
console.log(code)
})
.catch(err => {
console.log(err)
})
```## Note
- This script does not implement logic to locate/rotate barcode in the given image.
- Make sure the barcode image is the only thing in the image. Otherwise this script will most probably fail.## Contributing
- Each decoder is defined in `src` directory as a module.
- Tests are defined in the `tests` directory using `Jest`.## Contributors
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!