Today's npm package: bwip-js

I am developer from India currently based in Berlin, Germany.
I am very interested in Design, though I don't design ๐ I take care of it while making my apps.
Photography, videography and having random conversation over beer are my activities of spare time. Timelapses and hyperlapses make me wonder all the time ๐
Today's npm package is bwip-js
Text based input from human to computer is one way we can introduce real world to the Computer applications.
Printed data like Barcodes allow faster input of data via Optical data reading.
BwipJS (Barcode Writer in Pure JavaScript) is a JS implementation of Barcode Writer in Pure JavaScript and allows usage as a JS lib, CLI etc.
Let's see how it works:
QR Code
const bwipjs = require('bwip-js');
const pngFromBase64 = (data) => `data:image/png;base64,${data}`;
bwipjs.toBuffer({
bcid: 'qrcode', // Barcode type
text: '0123456789', // Text to encode
scale: 6, // 6x scaling factor
textxalign: 'center', // Always good to set this
}, (err, data) => {
if (err) {
throw err;
}
const bufferBase64 = data.toString('base64');
const img = `<img src="${pngFromBase64(bufferBase64)}" />`;
console.log(img);
});
Or same code as promise:
const bwipjs = require('bwip-js');
const pngFromBase64 = (data) => `data:image/png;base64,${data}`;
bwipjs.toBuffer({
bcid: 'qrcode', // Barcode type
text: '0123456789', // Text to encode
scale: 6, // 6x scaling factor
textxalign: 'center', // Always good to set this
}).then((data) => {
const bufferBase64 = data.toString('base64');
return `<img src="${pngFromBase64(bufferBase64)}" />`;
}).catch(err => (throw err));

See it in action here: https://runkit.com/pankaj/bwip-js
Barcode
const bwipjs = require('bwip-js');
const pngFromBase64 = (data) => `data:image/png;base64,${data}`;
bwipjs.toBuffer({
bcid: 'code128', // Barcode type
text: '0123456789', // Text to encode
scale: 6, // 6x scaling factor
textxalign: 'center', // Always good to set this
}, (err, data) => {
if (err) {
throw err;
}
const bufferBase64 = data.toString('base64');
const img = `<img src="${pngFromBase64(bufferBase64)}" />`;
console.log(img);
});

See the barcode in action here: https://runkit.com/pankaj/bwip-js-barcode
Stay tuned for tomorrow's package of the Day.




