![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
symbology-fix
Advanced tools
🔖 Generates 1D, 2D, and composite barcodes in png, svg, or eps formats. Supports 50+ symbologies.
A Node.js module that generates barcode images. Supports 50+ different 1D or 2D symbologies in png, eps, or svg formats.
This Node.js module will allow you to generate over 50+ different types of 1D or 2D symbologies, including barcodes for books, grocery, shipping carriers, healthcare, and international codes.
It can create a PNG, SVG, or EPS image file, or return a string containing SVG, PostScript, or base64-encoded PNG data.
yarn add symbology
import { SymbologyType, createStream } from 'symbology'
(async () => {
const { data } = await createStream({
symbology: SymbologyType.CODE11
}, '8765432164')
console.log('Result: ', data)
})()
This will log:
{
"data": "data:image/png+data;base64,PHN [...] eFd==",
"message": "Symbology successfully created.",
"code": 0
}
And the base64 PNG generated will look like:
import { SymbologyType, createFile } from 'symbology'
(async () => {
const { data } = await createFile({
symbology: SymbologyType.MAXICODE,
option1: 2,
primary: '999999999840012',
fileName: 'maxiCodeExample.svg'
}, 'Secondary Message Here')
console.log('Result: ', data)
})()
This creates maxiCodeExample.svg
which looks like:
import { SymbologyType, createFile } from 'symbology'
(async () => {
const { data } = await createFile({
symbology: SymbologyType.ONECODE
fileName: 'uspsExample.eps'
}, '01234567094987654321-01234')
console.log('Result: ', data)
})()
This creates uspsExample.eps
which looks like:
FAQs
🔖 Generates 1D, 2D, and composite barcodes in png, svg, or eps formats. Supports 50+ symbologies.
The npm package symbology-fix receives a total of 0 weekly downloads. As such, symbology-fix popularity was classified as not popular.
We found that symbology-fix 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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.