Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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:
node-canvas
.With npm:
npm install io-barcode
If you are not using Node, browserify, webpack or similar npm-based systems, download the minified UMD bundle for browsers only.
Create a new barcode. Returns a canvas element.
TYPE
- the type of barcode, can be:
code
- the string to encodeopts
- additional formatting, default options are:{
width: 2,
height: 100,
quite: 10,
displayValue: false, // Will display the encoded data as a label, or 'customLabel' if not null
font: 'monospace',
textAlign: 'center',
fontSize: 12,
fontWeight: 'bold',
backgroundColor: '',
lineColor: "#000",
customLabel:null, // Will be displayed if displayValue is set to true
}
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 using UMD bundle 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)
Run npm test
and visit http://localhost:3000 in your favorite browser.
FAQs
Isomorphic barcode generator for Node and browsers
The npm package io-barcode receives a total of 56 weekly downloads. As such, io-barcode popularity was classified as not popular.
We found that io-barcode demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.