Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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