Angular v14+ component for creating 1-D barcodes based on Lindell's JsBarcode. Repackaged and updated version of ngx-barcode.
npm install ngx-ivy-barcodengx-barcode repackaged and updated for Angular v16+ using the Angular CLI
---
This repository is a repackaged and updated version of ngx-barcode.
- Updated for angular 16+
- Repackaged using angular cli for more efficient distribution files and standardized builds
- Updated jsbarcode to latest 3.11.5+ with modern import statements
Install via
npm i --save ngx-ivy-barcode
An angular component for Angular 16+ for creating 1-D barcodes based on Lindell's JsBarcode.
This is an updated and repackaged version of the original ngx-barcode. We have repackaged using the angular cli and angular v16.
- Repackaged using angular cli instead of custom build
- Easy to upgrade via ng update
- Standard build process
- Uses latest angular v16
- Actively updated to newer versions since this is used in live production apps. Typically, updated a few weeks after each major angular release.
- Minor improvements as needed
- Compatible with original ngx-barcode(just change imports)
- Repackaged using angular cli and updated to support angular v16
- supports all barcode formats provided by JsBarcode
- CODE128
- EAN
- CODE39
- ITF-14
- MSI
- Pharmacode
- Codabar
To use ngx-barcode in your project, install it via npm:
``bash`
$ npm install --save ngx-ivy-barcode
Import the NgxBarcodeModule into your desired module:
`typescript
import { BrowserModule } from '@angular/platform-browser'
import { NgModule } from '@angular/core'
import { AppComponent } from './app.component'
// Import ngx-ivy-barcode module
import { NgxBarcodeModule } from 'ngx-ivy-barcode'
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, NgxBarcodeModule],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule {}
`
Once the library is imported, you can use the ngx-barcode component in your Angular application:
`xml`
{{title}}
To build the ngx-ivy-barcode library using the angular cli use the following command.
`bash`
npm run build
To build and publish a new version run the following script.
`bash``
./build-prod-publish.sh
We do not maintain a demo of this new version however you can look at the original project's demo page to get an idea of what this does.
Basic demo.
MIT © Bryon Williams