angular-barcode

An angular directive for lindell's JsBarcode

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
angular-barcode
2.0.17 years ago7 years agoMinified + gzip package size for angular-barcode in KB

Readme

angular-barcode Dependency Statusnpm versionlicence

Check out the demo!

NPM registry An angular directive for Lindell's JsBarcode

Installation

Install with NPM

``npm install --save angular-barcode``

Import

```javascript import 'angular-barcode'; ```

Or include the script in your code

```html ```

Add it as a module to angular

```javascript angular.module('MyExampleApp', 'angular-barcode'); ```

Usage

Default values: ```html ``` or ```html ``` or ```html ``` with $scope.bc: ```javascript $scope.bc = {
format: 'CODE128',
lineColor: '#000000',
width: 2,
height: 100,
displayValue: true,
fontOptions: '',
font: 'monospace',
textAlign: 'center',
textPosition: 'bottom',
textMargin: 2,
fontSize: 20,
background: '#ffffff',
margin: 0,
marginTop: undefined,
marginBottom: undefined,
marginLeft: undefined,
marginRight: undefined,
valid: function (valid) {
}
} ``` -Take a look at the example/index.html file. For more details you should definitely check out JSBarcode's Wiki!
Dev / Other
This package is written in ES2015 and uses webpack for bundling.