![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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 0 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.