Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kwoktung/code128.js
Pure JavaScript library for barcode (code128) generation using canvas
https://github.com/kwoktung/code128.js
barcode browser code128 javascript
Last synced: 11 days ago
JSON representation
Pure JavaScript library for barcode (code128) generation using canvas
- Host: GitHub
- URL: https://github.com/kwoktung/code128.js
- Owner: kwoktung
- Created: 2018-06-02T14:08:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-25T03:58:29.000Z (almost 2 years ago)
- Last Synced: 2024-10-15T09:16:46.533Z (3 months ago)
- Topics: barcode, browser, code128, javascript
- Language: JavaScript
- Homepage:
- Size: 60.5 KB
- Stars: 8
- Watchers: 0
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## code128.js
code128.js is a pure JavaScript library for generating barcodes using HTML5 canvas.
## usage
```
import code128 from 'code128.js'
var code = new Code128('code128')
code.insert(document.body)
```OR
```
(function() {
var code = new Code128('code128')
code.insert(document.body)
})();
```
## license
MIT