
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
javascript-barcode-reader
Advanced tools
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.
https://codesandbox.io/s/javascript-barcode-reader-liium
Recommended way to install is by using package manager (npm, yarn etc):
npm i javascript-barcode-reader
or use cdn:
<script src="//unpkg.com/javascript-barcode-reader"></script>
or download manually:
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 sahded portions
// singlePass: true
}
})
.then(code => {
console.log(code)
})
.catch(err => {
console.log(err)
})
javascriptBarcodeReader
will be available as global in Browsers.
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 sahded portions
// singlePass: true
}
})
.then(code => {
console.log(code)
})
.catch(err => {
console.log(err)
})
src
directory as a module.tests
directory using Jest
.Thanks goes to these wonderful people (emoji key):
Cristian Nitescu 💻 |
This project follows the all-contributors specification. Contributions of any kind welcome!
FAQs
Simple & Fast Barcode decoder for Browser and Node.js
The npm package javascript-barcode-reader receives a total of 856 weekly downloads. As such, javascript-barcode-reader popularity was classified as not popular.
We found that javascript-barcode-reader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.