Socket
Socket
Sign inDemoInstall

io-barcode

Package Overview
Dependencies
16
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    io-barcode

Isomorphic barcode generator for Node and browsers


Version published
Maintainers
1
Created

Readme

Source

npm package dependency status

io-barcode is a simple way to create different types of barcodes on server or client.

This started as a fork of the Johan Lindell's JsBarcode project. It adds the following functionality:

  1. Isomorphic barcode generation on client and server.
  2. Node support through node-canvas.
  3. Packaged with UMD support on client side.
  4. Modular design
  5. Returns a canvas element.
  6. Removed direct jQuery integration

Demo and examples

Barcode Generator

Supported barcodes
  • CODE128 (B or C)
  • EAN (13)
  • UPC-A
  • CODE39
  • ITF (Interleaved 2 of 5)
  • ITF14
  • Pharmacode

Installation

With npm:

npm install io-barcode

Or download the minified UMD bundle.

Usage

ioBarcode.TYPE(code, opts)

Create a new barcode. Returns a canvas element.

  • TYPE - the type of barcode, can be:
    • CODE128B
    • CODE128C
    • EAN
    • UPC
    • CODE39
    • ITF
    • ITF14
    • Pharmacode
  • code - the string to encode
  • opts - additional formatting, default options are:
    {
    	width:	2,
    	height:	100,
    	quite: 10,
    	displayValue: false,
    	font: 'monospace',
    	textAlign: 'center',
    	fontSize: 12,
    	backgroundColor: '',
    	lineColor: "#000"
    }
    

Example on server side:

  var fs = require('fs')
  var ioBarcode = require("io-barcode")
  var canvas = ioBarcode.CODE128B('Javascript is fun!', {
    width: 1,
    height: 25
  })
  var stream = canvas.pngStream()
  stream.pipe(fs.createWriteStream('./barcode.png'))

Example on the client side:

  // If using a require system like browserify or webpack just require it
  var ioBarcode = require("io-barcode")
  // If direct via a <script> tag ioBarcode is exposed as a global
  var canvas = ioBarcode.CODE128B('Javascript is fun!', {
    width: 1,
    height: 25
  })

  // Render the canvas directly
  document.body.appendChild(canvas)

  // Or in an image tag
  var img = new Image()
  img.src = canvas.toDataURL('image/png')
  document.body.appendChild(img)

Running tests

Run npm test and visit http://localhost:3000 in your favorite browser.

FAQs

Last updated on 24 Apr 2015

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc